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

9 lines
232 B
C#

using InnovEnergy.Lib.StatusApi.Connections;
namespace InnovEnergy.Lib.StatusApi.Devices;
public abstract class SinglePhaseAcDevice : Device
{
public SinglePhaseAcConnection Ac { get; init; } = SinglePhaseAcConnection.Null;
}