8 lines
277 B
C#
8 lines
277 B
C#
|
using InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
public abstract class SinglePhasePvInverter : SinglePhaseAcDevice, IPvCoupledDevice
|
||
|
{
|
||
|
public IReadOnlyList<DcConnection> Strings { get; init; } = ArraySegment<DcConnection>.Empty;
|
||
|
}
|