8 lines
179 B
C#
8 lines
179 B
C#
|
using InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
public interface IPvCoupledDevice
|
||
|
{
|
||
|
IReadOnlyList<DcConnection> Strings { get; }
|
||
|
}
|