1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Application/Game/Rank/RankParam.cs

14 lines
305 B
C#
Raw Normal View History

2023-02-16 09:04:38 +01:00
using System.ComponentModel;
namespace Application.Game.Rank;
public class RankParam
{
[XmlElement(ElementName = "card_id")]
[DefaultValue("0")]
public long CardId { get; set; }
[XmlElement(ElementName = "tenpo_id")]
[DefaultValue("0")]
public int TenpoId { get; set; }
2023-02-16 09:04:38 +01:00
}