10 lines
275 B
C#
10 lines
275 B
C#
|
using InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
public abstract record ThreePhasePvInverter
|
||
|
(
|
||
|
ThreePhaseAcConnection Ac,
|
||
|
IReadOnlyList<DcConnection> Strings
|
||
|
)
|
||
|
: ThreePhaseAcDevice(Ac), IPvCoupledDevice;
|