You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
746 B

using Service.Car.Msg.Car.Req;
namespace Service.Execute.Model.Tbox;
/// <summary>
/// 车辆返回
/// </summary>
public class TboxCarInfoModel
{
public bool Connected { get; set; }
public string CarNo { get; set; }
/// <summary>
/// 度电数据
/// </summary>
/// <returns></returns>
public ElecMsg? ElecMsg { get; set; }
/// <summary>
/// 车辆信息
/// </summary>
public CarInfo? CarInfo { get; set; }
/// <summary>
/// 车辆状态信息
/// </summary>
public CarStatus? CarStatus { get; set; }
/// <summary>
/// 温度故障数据
/// </summary>
/// <returns></returns>
public TemperatureDetectionMsg? TemperatureDetectionMsg { get; set; }
}