8 lines
169 B
C#
8 lines
169 B
C#
|
using InnovEnergy.Lib.Units.Composite;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
public interface IPvConnection
|
||
|
{
|
||
|
IReadOnlyList<DcPhase> Strings { get; }
|
||
|
}
|