This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace Service.Execute.Model.Tbox;
public class CarStatus
{
/// <summary>
/// 车辆档位 最小值:-1,最大值 14 ,0x0F表示无效,-1 代表倒档 R;0 代表空挡 N;大于 0 代表前进档 D;
/// </summary>
public short? Gear { get; set; }
/// 刹车状态 "0:未拉手刹1:已拉手刹 其它值无效"
public byte? Break { get; set; }
/// 钥匙状态 "0:OFF1:ACC ON 2:IG ON 其它值无效"
public byte? Keys { get; set; }
/// 0:未解锁未上锁
/// 1:解锁成功
/// 2:上锁成功
/// 3:无效数据
public byte? LockStatus { get; set; }
}