using MessagePack; using System.Text.Json.Serialization; namespace SVSim.EmulatedEntrypoint.Models.Dtos; [MessagePackObject] public class BattlePassLevel { [JsonPropertyName("level")] [Key("level")] public int Level { get; set; } [JsonPropertyName("required_point")] [Key("required_point")] public int RequiredPoints { get; set; } }