27 lines
647 B
C#
27 lines
647 B
C#
|
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;
|
||
|
}
|