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.
29 lines
543 B
29 lines
543 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 ElecMsg? ElecMsg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态数据
|
|
/// </summary>
|
|
public HeartBeatMsg? HeartBeatMsg { get; set; }
|
|
} |