diff --git a/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ActiveVoltages.cs b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ActiveVoltages.cs new file mode 100644 index 000000000..7e6932481 --- /dev/null +++ b/csharp/Lib/Devices/Trumpf/TruConvertAc/Status/ActiveVoltages.cs @@ -0,0 +1,13 @@ +using InnovEnergy.Lib.Units; + +namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Status; + +public class ActiveVoltages +{ + public Voltage ActiveUpperVoltage => _Self.DcMaxVoltage; + public Voltage ActiveLowerVoltage => _Self.DcMinVoltage; + public Voltage ActiveRefVoltage => _Self.DcReferenceVoltage; + + internal ActiveVoltages(AcDcRecord self) => _Self = self; + private readonly AcDcRecord _Self; +} \ No newline at end of file