11 lines
305 B
C#
11 lines
305 B
C#
|
|
||
|
|
||
|
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;
|
||
|
}
|