2023-02-26 09:38:28 +00:00
|
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
|
|
|
|
namespace InnovEnergy.Lib.StatusApi.Connections;
|
|
|
|
|
|
|
|
public interface IPvConnection
|
|
|
|
{
|
2023-09-01 09:12:23 +00:00
|
|
|
IReadOnlyList<DcBus> Strings { get; }
|
2023-06-13 11:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public interface IPvConnection<out T> where T : IReadOnlyList<DcBus>
|
|
|
|
{
|
|
|
|
T Strings { get; }
|
2023-09-01 09:12:23 +00:00
|
|
|
}
|