6cc4d8290e
* Change db and added PLC_ID
20 lines
377 B
C#
20 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DTOModels
|
|
{
|
|
public class DTORuntimeFunctionAccessModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Area { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|