Innovenergy_trunk/csharp/lib/StatusApi/Devices/ThreePhaseInverter.cs

11 lines
305 B
C#
Raw Normal View History

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;
}