12 lines
300 B
C#
12 lines
300 B
C#
|
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;
|
||
|
}
|
||
|
|
||
|
|