16 lines
386 B
C#
16 lines
386 B
C#
using InnovEnergy.Lib.StatusApi.Connections;
|
|
using InnovEnergy.Lib.StatusApi.Generator;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi;
|
|
|
|
[OpParallel]
|
|
public partial record ThreePhaseInverterStatus :
|
|
DeviceStatus,
|
|
IAc3Connection,
|
|
IDcConnection
|
|
{
|
|
public required Ac3Phase Ac { get; init; }
|
|
public required DcPhase Dc { get; init; }
|
|
}
|
|
|