16 lines
364 B
C#
16 lines
364 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 SinglePhaseInverterStatus :
|
|
DeviceStatus,
|
|
IAc1Connection,
|
|
IDcConnection
|
|
{
|
|
public Ac1Bus Ac { get; init; }
|
|
public DcBus Dc { get; init; }
|
|
}
|