12 lines
254 B
C#
12 lines
254 B
C#
|
using InnovEnergy.Lib.StatusApi.Phases;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
public record SinglePhaseAcConnection
|
||
|
(
|
||
|
Decimal Voltage,
|
||
|
Decimal Current,
|
||
|
Decimal Phi,
|
||
|
Decimal Frequency
|
||
|
);
|
||
|
//: AcPhase(Voltage, Current, Phi);
|