using Service.Car.Msg.Car.Req; namespace WebStarter.Dto.Resp; /// /// 车辆数据 /// public class CarInfoResp { /// /// 连接状态 /// public bool Connected { get; set; } /// /// vin码 /// public string? CarNo { get; set; } /// /// 度电数据 /// public ElecMsg? ElecMsg { get; set; } /// /// 状态数据 /// public HeartBeatMsg? HeartBeatMsg { get; set; } }