namespace BatCharging.Model
{
public class QueryVersionRes : ASDU
{
///
///软件版本号
///
public byte SoftwareVersion0 { get; set; }
public byte SoftwareVersion1 { get; set; }
public byte SoftwareVersion2 { get; set; }
///
///硬件版本号
///
public byte HardwareVersion0 { get; set; }
public byte HardwareVersion1 { get; set; }
public byte HardwareVersion2 { get; set; }
///
///预留
///
public byte Remark0 { get; set; }
public byte Remark1 { get; set; }
public byte Remark2 { get; set; }
}
}