15 lines
486 B
C#
15 lines
486 B
C#
namespace Disco.Models.ClientServices.EnrolmentInformation
|
|
{
|
|
public class Battery
|
|
{
|
|
public string Availability { get; set; }
|
|
public string Chemistry { get; set; }
|
|
public string Description { get; set; }
|
|
public uint? DesignCapacity { get; set; }
|
|
public ulong? DesignVoltage { get; set; }
|
|
public string DeviceID { get; set; }
|
|
public uint? FullChargeCapacity { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|