|
- namespace BPASmartClient.FoodStationTest.Model.HK_PLC
- {
- public class HKDeviceWrite
- {
- public string Address { get; set; }
- public PlcVarType PlcVarType { get; set; } = PlcVarType.Bool;
- public object Value { get; set; }
- }
- public enum PlcVarType
- {
- Bool,
- Byte,
- Int,
- Dint,
- Real,
- }
- }
|