12 lines
274 B
C#
12 lines
274 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace GCLocalServerRewrite.models;
|
|
|
|
public class TotalTrophy
|
|
{
|
|
[XmlElement(ElementName = "card_id")]
|
|
public long CardId { get; set; }
|
|
|
|
[XmlElement(ElementName = "total_trophy_num")]
|
|
public int TrophyNum { get; set; }
|
|
} |