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.

34 lines
664 B

using Service.Car.Msg.Car.Req;
namespace WebStarter.Dto.Resp;
/// <summary>
/// 车辆数据
/// </summary>
public class CarInfoResp
{
/// <summary>
/// 连接状态
/// </summary>
public bool Connected { get; set; }
/// <summary>
/// vin码
/// </summary>
public string? CarNo { get; set; }
/// <summary>
/// 电池基本信息
/// </summary>
public ElecBaseMsg? ElecBaseMsg { get; set; }
/// <summary>
/// 电池实时信息
/// </summary>
public ElecMsg? ElecMsg { get; set; }
/// <summary>
/// 状态数据
/// </summary>
public HeartBeatMsg? HeartBeatMsg { get; set; }
}