19 lines
556 B
C#
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; } = "";
|
|
}
|
|
|
|
}
|