2d653e385f
* Added write power on function
22 lines
463 B
C#
22 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static CMS_CORE_Library.DataStructures;
|
|
|
|
namespace Step.Model.DTOModels
|
|
{
|
|
public class DTOProcessDataModel
|
|
{
|
|
public bool isRunning;
|
|
public List<ProcessData> processes;
|
|
|
|
public DTOProcessDataModel()
|
|
{
|
|
isRunning = false;
|
|
processes = new List<ProcessData>();
|
|
}
|
|
}
|
|
}
|