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

8 lines
276 B
C#

using InnovEnergy.Lib.StatusApi.Connections;
namespace InnovEnergy.Lib.StatusApi.Devices;
public abstract class ThreePhasePvInverter : ThreePhaseAcDevice , IPvCoupledDevice
{
public IReadOnlyList<DcConnection> Strings { get; init; } = ArraySegment<DcConnection>.Empty;
}