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

12 lines
222 B
C#

using InnovEnergy.Lib.StatusApi.Connections;
namespace InnovEnergy.Lib.StatusApi.Devices;
public abstract record ThreePhaseInverter
(
ThreePhaseAcConnection Ac,
DcConnection Dc
)
: Device;