|
using InnovEnergy.Lib.StatusApi.Connections;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
|
|
|
public abstract class DcDcConverter : Device
|
|
{
|
|
public DcConnection Left { get; init; } = DcConnection.Null;
|
|
public DcConnection Right { get; init; } = DcConnection.Null;
|
|
} |