Add reading active registers under Voltages classes

This commit is contained in:
atef 2024-08-02 13:40:57 +02:00
parent 6cbf6025b5
commit 9ecb14e2a5
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ public class Voltages
{
public InternVoltages Intern => new(_Self);
public ExternVoltages Extern => new(_Self);
public ActiveVoltages Active => new(_Self);
internal Voltages(AcDcRecord self) => _Self = self;
private readonly AcDcRecord _Self;