17 lines
458 B
C#
17 lines
458 B
C#
using InnovEnergy.Lib.StatusApi.Connections;
|
|
using InnovEnergy.Lib.StatusApi.Generator;
|
|
using InnovEnergy.Lib.Units;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi;
|
|
|
|
using T = BatteryStatus;
|
|
|
|
[OpParallel]
|
|
public partial record BatteryStatus : DeviceStatus, IDcConnection
|
|
{
|
|
public DcBus Dc { get; init; }
|
|
public Percent Soc { get; init; }
|
|
public Temperature Temperature { get; init; }
|
|
}
|
|
|