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

18 lines
415 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class UserRankedMatches
{
[Key("class_id")]
public int ClassId { get; set; }
[Key("match_count")]
public int MatchCount { get; set; }
[Key("win")]
public int Wins { get; set; }
[Key("lose")]
public int Losses { get; set; }
[Key("viewer_id")]
public ulong ViewerId { get; set; }
}