16 lines
333 B
C#
16 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CommonUsage.Protocols.VDA5050.Objects
|
|
{
|
|
public class batteryState
|
|
{
|
|
public double batteryCharge;
|
|
public double batteryVoltage;
|
|
public double batteryHealth;
|
|
public bool charging;
|
|
public int reach;
|
|
}
|
|
}
|