|
using InnovEnergy.Lib.StatusApi.Generator;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi;
|
|
|
|
[OpParallel]
|
|
public partial record DcDcConverterStatus : DeviceStatus
|
|
{
|
|
public DcBus Left { get; init; }
|
|
public DcBus Right { get; init; }
|
|
}
|
|
|
|
|
|
|