|
using InnovEnergy.Lib.StatusApi.Connections;
|
|
|
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
|
|
|
public abstract class SinglePhaseInverter
|
|
{
|
|
public SinglePhaseAcConnection Ac { get; init; } = SinglePhaseAcConnection.Null;
|
|
public DcConnection Dc { get; init; } = DcConnection.Null;
|
|
}
|
|
|
|
|