1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Game/Rank/RankParam.cs
2023-02-16 16:53:02 +08:00

10 lines
196 B
C#

using System.ComponentModel;
namespace Application.Game.Rank;
public class RankParam
{
[XmlElement(ElementName = "card_id")]
[DefaultValue("0")]
public long CardId { get; set; }
}