Files
cms_thermo_active/Step.Model/DTOModels/DTORuntimeFunctionAccessModel.cs
T
Lucio Maranta 99c2e8dc01 Config reorganization
General refactor
2018-02-09 14:59:24 +01:00

20 lines
376 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DTOModels
{
public class DTORuntimeFunctionalityModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Area { get; set; }
public bool Enabled { get; set; }
}
}