8 lines
227 B
C#
8 lines
227 B
C#
|
using InnovEnergy.Lib.StatusApi.Connections;
|
||
|
|
||
|
namespace InnovEnergy.Lib.StatusApi.Devices;
|
||
|
|
||
|
public abstract class ThreePhaseAcDevice: Device
|
||
|
{
|
||
|
public ThreePhaseAcConnection Ac { get; init; } = ThreePhaseAcConnection.Null;
|
||
|
}
|