Files
cms_thermo_active/Thermo.Active.Model/ConfigModels/IOConfigModel.cs
T
2021-02-02 19:39:35 +01:00

19 lines
556 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; set; } = "";
}
}