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
556 B

4 months ago
using Service.Car.Msg.Car.Req;
namespace Service.Api.Resp;
/// <summary>
/// 车辆返回
/// </summary>
public class CarInfoResp
{
public bool Connected { get; set; }
public string CarNo { get; set; }
/// <summary>
/// 度电数据
/// </summary>
/// <returns></returns>
4 months ago
public ElecInfo? ElecMsg { get; set; }
4 months ago
/// <summary>
/// 车辆信息
/// </summary>
public CarInfo? CarInfo { get; set; }
/// <summary>
/// 车辆状态信息
/// </summary>
public CarStatus? CarStatus { get; set; }
}