8 lines
183 B
C#
8 lines
183 B
C#
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
public abstract class Battery : DcDevice
|
||
|
{
|
||
|
public Decimal Soc { get; init; }
|
||
|
public Decimal Temperature { get; init; }
|
||
|
}
|