14 lines
362 B
C#
14 lines
362 B
C#
using InnovEnergy.Lib.StatusApi.Connections;
|
|
using InnovEnergy.Lib.StatusApi.Generator;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi;
|
|
|
|
[OpParallel]
|
|
public partial record MpptStatus : IDcConnection, IPvConnection
|
|
{
|
|
public DcBus Dc { get; init; }
|
|
public IReadOnlyList<DcBus> Strings { get; init; }
|
|
}
|
|
|
|
|