12 lines
387 B
C#
12 lines
387 B
C#
using InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.DataTypes;
|
|
|
|
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Status;
|
|
|
|
public class InverterStates
|
|
{
|
|
public InverterState Current => _Self.InverterState;
|
|
public InverterState OnLastAlarm => _Self.StateOnLastAlarm;
|
|
|
|
internal InverterStates(AcDcRecord self) => _Self = self;
|
|
private readonly AcDcRecord _Self;
|
|
} |