10 lines
258 B
C#
10 lines
258 B
C#
namespace RobotNet.RobotShares.VDA5050.FactsheetExtend;
|
|
|
|
public class Battery
|
|
{
|
|
public uint Battery_low { get; set; }
|
|
public uint Battery_normal { get; set; }
|
|
public uint Battery_good { get; set; }
|
|
public uint Battery_full { get; set; }
|
|
}
|