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