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.
27 lines
538 B
27 lines
538 B
5 months ago
|
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; }
|
||
|
}
|