7 lines
179 B
C#
7 lines
179 B
C#
|
namespace InnovEnergy.Lib.Devices.AMPT;
|
||
|
|
||
|
public record AmptStringStatus
|
||
|
{
|
||
|
public Decimal Voltage { get; init; }
|
||
|
public Decimal Current { get; init; }
|
||
|
}
|