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
526 B
27 lines
526 B
6 months ago
|
namespace Service.Execute.Model;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 车辆数据
|
||
|
/// </summary>
|
||
|
public class TboxCarInfoModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 连接状态
|
||
|
/// </summary>
|
||
|
public bool Connected { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 车牌号
|
||
|
/// </summary>
|
||
|
public string? CarNo { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 度电数据
|
||
|
/// </summary>
|
||
|
public TboxElecMsg? ElecMsg { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态数据
|
||
|
/// </summary>
|
||
|
public TboxHeartBeatMsg? HeartBeatMsg { get; set; }
|
||
|
}
|