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) => DbStringEnumJson.Read(ref reader, AlertStatusExtensions.FromDbString); public override void Write(Utf8JsonWriter writer, AlertStatus value, JsonSerializerOptions options) => writer.WriteStringValue(value.ToDbString()); }