Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/UserPromotionMatch.cs
2024-09-12 00:35:31 -04:00

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; }
}