6cc4d8290e
* Change db and added PLC_ID
22 lines
473 B
C#
22 lines
473 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<ProcessDataModel> processes;
|
|
|
|
public DTOProcessDataModel()
|
|
{
|
|
isRunning = false;
|
|
processes = new List<ProcessDataModel>();
|
|
}
|
|
}
|
|
}
|