13 lines
317 B
Plaintext
13 lines
317 B
Plaintext
namespace CANFDApiProxy.Messages
|
|
{
|
|
public class PowerMessage
|
|
{
|
|
public bool Battery_enable { get; set; }
|
|
public bool Nvin_pin { get; set; }
|
|
public bool On_pin { get; set; }
|
|
public bool Power_fault { get; set; }
|
|
public string Status { get; set; }
|
|
}
|
|
|
|
}
|