using System.Text.Json.Serialization; namespace SVSim.Bootstrap.Models.Seed; /// /// Mirrors one entry of seeds/spot-cards.json. Source: /load/index data.spot_cards /// — extractor reshapes the wire dict {card_id: cost} into a list of {card_id, cost} rows. /// public sealed class SpotCardSeed { [JsonPropertyName("card_id")] public long CardId { get; set; } [JsonPropertyName("cost")] public int Cost { get; set; } }