10 lines
274 B
C#
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();
|
||
|
}
|