using System.Text.Json; using System.Text.Json.Serialization; namespace SVSim.Bootstrap.Models.Seed; /// /// Mirrors one entry of seeds/feature-maintenances.json. Source: /load/index /// data.feature_maintenance_list (array of dicts; usually empty). is /// the raw element so it round-trips verbatim into the entity's jsonb column. /// public sealed class FeatureMaintenanceSeed { [JsonPropertyName("id")] public int Id { get; set; } [JsonPropertyName("feature_key")] public string FeatureKey { get; set; } = ""; [JsonPropertyName("data")] public JsonElement Data { get; set; } }