using System; using System.Text; using System.Collections.Generic; namespace BatCharging.Model { /// /// 鉴权信息 /// public class Auth { /// /// 记录类型 /// public byte RecordType { get; set; } /// /// 客户端类型.1站控 2本地控制器 3测试客户端 4TCU模式 0未知设备 /// public byte ClientType { get; set; } /// /// 连接序号 /// public UInt16 ConnSeq { get; set; } /// /// 鉴权码字节数组 /// public byte[] AuthCodes { get; set; } /// /// 鉴码KEY /// public byte AuthCodeKey { get; set; } /// /// 鉴权类结构体 /// public Auth() { } } }