using System; using System.Collections.Generic; namespace BatCharging.Model { public class LoginRes { /// /// 记录类型 /// public byte RecordType { get; set; } /// /// 结果 /// public byte Result { get; set; } /// /// 同步时间 /// public DateTime Time { get; set; } public LoginRes() { } } }