Innovenergy_trunk/csharp/Lib/Devices/Trumpf/TruConvertDc/Control/Vcc.cs

27 lines
647 B
C#
Raw Normal View History

2023-06-13 11:01:01 +00:00
using InnovEnergy.Lib.Units;
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertDc.Control;
public class Vcc
{
public Current EndPointCurrent
{
get => _Self.VccEndPointCurrent;
set => _Self.VccEndPointCurrent = value.Value;
}
public Voltage EndPointVoltage
{
get => _Self.VccEndPointCurrent;
set => _Self.VccEndPointCurrent = value.Value;
}
public Current StartPointCurrent
{
get => _Self.VccStartPointCurrent;
set => _Self.VccStartPointCurrent = value.Value;
}
private readonly DcDcRecord _Self;
internal Vcc(DcDcRecord self) => _Self = self;
}