using MessagePack; namespace SVSim.EmulatedEntrypoint.Models.Dtos; [MessagePackObject] public class UserPromotionMatch { [Key("match_count")] public int MatchCount { get; set; } [Key("battle_result")] public int BattleResult { get; set; } [Key("win")] public int Wins { get; set; } [Key("lose")] public int Losses { get; set; } }