using System.Text.Json.Serialization; namespace SVSim.Bootstrap.Models.Seed; /// /// Mirrors one entry of seeds/unlimited-restrictions.json. Source: /load/index /// data.unlimited_restricted_base_card_id_list (dict {card_id: restriction_value}). /// public sealed class UnlimitedRestrictionSeed { [JsonPropertyName("card_id")] public long CardId { get; set; } [JsonPropertyName("restriction_value")] public int RestrictionValue { get; set; } }