|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi.Connections;
|
|
|
|
public interface IPvConnection
|
|
{
|
|
IReadOnlyList<DcBus> Strings { get; }
|
|
}
|
|
|
|
public interface IPvConnection<out T> where T : IReadOnlyList<DcBus>
|
|
{
|
|
T Strings { get; }
|
|
} |