2025-11-16 19:16:44 +08:00

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