16 lines
402 B
C#
16 lines
402 B
C#
using System.Text.Json.Serialization;
|
|
using InnovEnergy.Units.Json;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace InnovEnergy.Units;
|
|
|
|
public static partial class Units
|
|
{
|
|
public static IReadOnlyList<JsonConverter> JsonConverters = new JsonConverter[]
|
|
{
|
|
new CurrentConverter(),
|
|
new VoltageConverter(),
|
|
new PowerConverter(),
|
|
new ResistanceConverter()
|
|
};
|
|
} |