10 lines
246 B
C#
10 lines
246 B
C#
namespace RobotApp.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; }
|
|
}
|