using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BatCharging.Model { /// /// 4.2.12 充放电机应答版本号 /// public class AnsVerNum { /// /// 软件版本号 /// public byte SofVerNum1 { get; set; } /// /// 软件版本号 /// public byte SofVerNum2 { get; set; } /// /// 软件版本号 /// public byte SofVerNum3 { get; set; } /// /// 硬件版本号 /// public byte HarVerNum1 { get; set; } /// /// 硬件版本号 /// public byte HarVerNum2 { get; set; } /// /// 硬件版本号 /// public byte HarVerNum3 { get; set; } /// /// 预留 /// public byte reserved1 { get; set; } /// /// 预留 /// public byte reserved2 { get; set; } /// /// 预留 /// public byte reserved3 { get; set; } } }