9 lines
232 B
C#
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;
|
||
|
}
|