Innovenergy_trunk/csharp/Lib/S3/DataRec.cs

11 lines
290 B
C#
Raw Normal View History

using InnovEnergy.Lib.S3.Records.Fields;
2023-02-16 12:57:06 +00:00
namespace InnovEnergy.Lib.S3;
2023-02-16 12:57:06 +00:00
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; }
}