using System; namespace BatCharging.Model { public class AuthRes : ASDU { /// /// 连接序号 /// public UInt16 ConnSeq { get; set; } /// /// 鉴权结果 /// public byte AuthResult { get; set; } /// /// 失败原因 /// public byte FailReason { get; set; } } }