16 lines
363 B
C#
16 lines
363 B
C#
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; }
|
|
} |