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

65 lines
1.5 KiB
C#

using MessagePack;
namespace CGamesServer.Business.Dto
{
[MessagePackObject]
public class TheCharts
{
[Key("NickName")]
/// <summary>
/// Desc:用户昵称
/// Default:
/// Nullable:True
/// </summary>
public string? NickName { get; set; }
[Key("AvatarUrl")]
/// <summary>
/// Desc:用户头像URL
/// Default:
/// Nullable:True
/// </summary>
public string? AvatarUrl { get; set; }
[Key("FlightScore")]
/// <summary>
/// Desc:用户战绩积分
/// Default:0
/// Nullable:False
/// </summary>
public long FlightScore { get; set; }
[Key("DestroyCount")]
/// <summary>
/// Desc:击毁数
/// Default:0
/// Nullable:False
/// </summary>
public long DestroyCount { get; set; }
[Key("QuiltDestroyCount")]
/// <summary>
/// Desc:被击毁数
/// Default:0
/// Nullable:True
/// </summary>
public long? QuiltDestroyCount { get; set; }
[Key("FlightSwitch")]
public string FlightSwitch { get; set; } = string.Empty;
[Key("WarRecord")]
public string WarRecord { get; set; } = string.Empty;
[Key("Ranking")]
/// <summary>
/// Desc:排名
/// Default:0
/// Nullable:False
/// </summary>
public long Ranking { get; set; }
}
}