2023-02-26 09:38:28 +00:00
|
|
|
using InnovEnergy.Lib.StatusApi.Connections;
|
2023-03-01 07:07:26 +00:00
|
|
|
using InnovEnergy.Lib.StatusApi.Generator;
|
2023-02-26 09:38:28 +00:00
|
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
|
|
|
|
namespace InnovEnergy.Lib.StatusApi;
|
|
|
|
|
2023-03-01 07:07:26 +00:00
|
|
|
[OpParallel]
|
|
|
|
public partial record MpptStatus : IDcConnection, IPvConnection
|
|
|
|
{
|
2023-03-01 09:52:54 +00:00
|
|
|
public DcBus Dc { get; init; }
|
|
|
|
public IReadOnlyList<DcBus> Strings { get; init; }
|
2023-03-01 07:07:26 +00:00
|
|
|
}
|
2023-02-26 09:38:28 +00:00
|
|
|
|
|
|
|
|