using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BatCharging.Model { /// /// 站控发送鉴权结果 /// public class AuthResult { /// /// 充电机有回复 /// public bool F_HaveRes { get; set; } /// /// 自增识别号 /// public UInt16 F_ID { get; set; } /// /// 鉴权认证信息 /// public Auth F_Auth { get; set; } /// /// 充电机应答站控鉴权认证消息 /// public AuthRes F_AuthRes { get; set; } } }