using System.Text.Json.Serialization; namespace SVSim.Bootstrap.Models.Seed; /// Mirrors a single entry in seeds/battle-pass-levels.json. public sealed class BattlePassLevelSeed { [JsonPropertyName("level")] public int Level { get; set; } [JsonPropertyName("required_point")] public int RequiredPoint { get; set; } }