using System.Text.Json.Serialization; namespace SVSim.Bootstrap.Models.Seed; /// /// Mirrors one entry of seeds/reprinted-cards.json. Source: /load/index /// data.reprinted_base_card_ids (dict or list of card_ids). /// public sealed class ReprintedCardSeed { [JsonPropertyName("card_id")] public long CardId { get; set; } }