using System.Text.Json; using System.Text.Json.Serialization; public sealed class AlertStatusJsonConverter : JsonConverter { public override AlertStatus Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) => AlertStatusExtensions.FromDbString(reader.GetString()!); public override void Write(Utf8JsonWriter writer, AlertStatus value, JsonSerializerOptions options) => writer.WriteStringValue(value.ToDbString()); }