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.
|
|
|
|
using Service.TBox.Msg.Host;
|
|
|
|
|
using Service.TBox.Msg.TBox;
|
|
|
|
|
|
|
|
|
|
namespace WebStarter.Dto.Resp;
|
|
|
|
|
|
|
|
|
|
public class TBoxInfo
|
|
|
|
|
{
|
|
|
|
|
public BatteryOneSn? BatteryOneSn { get; set; }
|
|
|
|
|
public BatteryTwoSn? BatteryTwoSn { get; set; }
|
|
|
|
|
public BatteryThreeSn BatteryThreeSn { get; set; }
|
|
|
|
|
public BatteryFourSn BatteryFourSn { get; set; }
|
|
|
|
|
public BatteryInfo1 BatteryInfo1 { get; set; }
|
|
|
|
|
public LockStatusMsg LockStatusMsg { get; set; }
|
|
|
|
|
public SocMsg SocMsg { get; set; }
|
|
|
|
|
public SohMsg SohMsg { get; set; }
|
|
|
|
|
public StatusMsg StatusMsg { get; set; }
|
|
|
|
|
public SubMileMsg SubMileMsg { get; set; }
|
|
|
|
|
public TotalMileMsg TotalMileMsg { get; set; }
|
|
|
|
|
public VersionMsg VersionMsg { get; set; }
|
|
|
|
|
public RestartMsg RestartMsg { get; set; }
|
|
|
|
|
public String Vin { get; set; }
|
|
|
|
|
public String BatteryNo { get; set; }
|
|
|
|
|
public bool CarConnected { get; set; }
|
|
|
|
|
public bool TBoxConnected { get; set; }
|
|
|
|
|
}
|