Innovenergy_trunk/csharp/lib/StatusApi/Connections/SinglePhaseAcConnection.cs

10 lines
274 B
C#

using InnovEnergy.Lib.StatusApi.Phases;
namespace InnovEnergy.Lib.StatusApi.Connections;
public class SinglePhaseAcConnection : AcPhase
{
public Decimal Frequency { get; init; }
public new static SinglePhaseAcConnection Null = new SinglePhaseAcConnection();
}