using InnovEnergy.Lib.StatusApi.Connections; namespace InnovEnergy.Lib.StatusApi.Devices; public abstract class ThreePhaseInverter : Device { public ThreePhaseAcConnection Ac { get; init; } = ThreePhaseAcConnection.Null; public DcConnection Dc { get; init; } = DcConnection.Null; }