using InnovEnergy.Lib.Units; namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertDc.Status; public class Temperatures { public Temperature InletAir => _Self.InletAirTemperature; public Temperature HighVoltageModule => _Self.HighVoltageModuleTemperature; public Temperature LowVoltageModule => _Self.LowVoltageModuleTemperature; internal Temperatures(DcDcRecord self) => _Self = self; private readonly DcDcRecord _Self; }