Innovenergy_trunk/csharp/Lib/Units/Json/CurrentConverter.cs

17 lines
491 B
C#
Raw Normal View History

2023-02-23 12:53:39 +00:00
using System.Text.Json;
using System.Text.Json.Serialization;
namespace InnovEnergy.Lib.Units.Json;
2023-02-23 12:53:39 +00:00
public class CurrentConverter : JsonConverter<Current>
{
public override Current Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
return new Current(reader.GetDecimal());
}
public override void Write(Utf8JsonWriter writer, Current value, JsonSerializerOptions options)
{
writer.WriteNumberValue(value.Value);
}
}