Files
cms_thermo_active/Step.Model/DTOModels/DTORuntimeFunctionAccessModel.cs
T
Lucio Maranta 6cc4d8290e + Added functions access
* Change db and added PLC_ID
2018-02-06 17:36:12 +01:00

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; }
}
}