19 lines
424 B
C#
19 lines
424 B
C#
using MessagePack;
|
|
using Models;
|
|
|
|
namespace CGamesServer.Business.Dto
|
|
{
|
|
[MessagePackObject]
|
|
public class UserWithRanking : User
|
|
{
|
|
[Key("WarRecord")]
|
|
public string WarRecord { get; set; } = string.Empty;
|
|
|
|
[Key("FlightSwitch")]
|
|
public string FlightSwitch { get; set; } = string.Empty;
|
|
|
|
[Key("Ranking")]
|
|
public string Ranking { get; set; } = string.Empty;
|
|
}
|
|
}
|