Innovenergy_trunk/csharp/lib/StatusApi/Devices/ThreePhasePvInverter.cs

10 lines
275 B
C#
Raw Normal View History

using InnovEnergy.Lib.StatusApi.Connections;
namespace InnovEnergy.Lib.StatusApi.Devices;
2023-02-22 13:46:36 +00:00
public abstract record ThreePhasePvInverter
(
ThreePhaseAcConnection Ac,
IReadOnlyList<DcConnection> Strings
)
: ThreePhaseAcDevice(Ac), IPvCoupledDevice;