11 lines
290 B
C#
11 lines
290 B
C#
|
using InnovEnergy.Lib.S3.Records.Fields;
|
||
|
|
||
|
namespace InnovEnergy.Lib.S3;
|
||
|
|
||
|
public record DataRec
|
||
|
{
|
||
|
[Unit("V")] public Double Voltage { get; init; }
|
||
|
[Unit("A")] public Double Current { get; init; }
|
||
|
public Boolean Error { get; init; }
|
||
|
public String State { get; init; }
|
||
|
}
|