1
0
mirror of synced 2025-02-11 16:33:03 +01:00

14 lines
305 B
C#
Raw Normal View History

2023-02-16 16:04:38 +08: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 16:04:38 +08:00
}