12 lines
222 B
C#
12 lines
222 B
C#
|
|
||
|
|
||
|
using InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
public abstract record ThreePhaseInverter
|
||
|
(
|
||
|
ThreePhaseAcConnection Ac,
|
||
|
DcConnection Dc
|
||
|
)
|
||
|
: Device;
|