2023-02-21 06:27:20 +00:00
|
|
|
using InnovEnergy.Lib.StatusApi.Connections;
|
|
|
|
|
|
|
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
|
|
|
|
2023-02-22 13:46:36 +00:00
|
|
|
public abstract record SinglePhasePvInverter
|
|
|
|
(
|
|
|
|
SinglePhaseAcConnection Ac,
|
|
|
|
IReadOnlyList<DcConnection> Strings
|
|
|
|
)
|
|
|
|
: SinglePhaseAcDevice(Ac), IPvCoupledDevice;
|