Files
cms_thermo_active/Thermo.Active.Model/ConfigModels/IOConfigModel.cs
T
Samuele E. Locatelli 64e8bd0331 ok gestione CONF x IO
2021-02-03 08:47:33 +01:00

26 lines
693 B
C#

using System.Collections.Generic;
using static Thermo.Active.Model.Constants;
namespace Thermo.Active.Model.ConfigModels
{
public class IOConfigModel
{
public int Id { get; set; } =0;
public TACT_IO_TYPE Category { get; set; }
public string Bank { get; set; } = "0";
public string Position { get; set; } = "";
public string Page { get; set; } = "";
public string Wire { get; set; } = "";
public string Profinet { get; set; } = "";
public string Label
{
get
{
string answ = $"LBL_IO_{Id}_{Bank}_{Position}";
return answ;
}
}
}
}