Files
cms_thermo_active/Thermo.Active.Model/ConfigModels/NcConfigModel.cs
T
2020-06-19 19:28:07 +02:00

19 lines
668 B
C#

namespace Thermo.Active.Model.ConfigModels
{
public class NcConfigModel
{
public string NcVendor { get; set; }
public bool ShowNcHMI { get; set; }
public string NcIpAddress { get; set; }
public ushort NcPort { get; set; }
public string NcUniqueId { get; set; }
public string NcName { get; set; }
public string SharedPath { get; set; }
public string SharedName { get; set; }
public string InstallationDate { get; set; }
public bool MgiOption { get; set; }
public bool SiemensKeyboardOption { get; set; }
public bool MachineNumberHasLetters { get; set; }
}
}