12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.Device.PowerSupplier
- {
- public class PowerSupplierCommand
- {
-
-
-
- public byte Channel { get; set; }
-
-
-
- public byte CommandCode { get; set; }
-
-
-
- public Dictionary<string,(int,int)> Variables { get; set; } = new Dictionary<string, (int,int)>();
-
-
-
- public ushort Address { get; set; }
-
-
-
- public ushort RegisterCount { get; set; }
-
-
-
- public ushort[] Datas { get; set; }
- }
- }
|