Files
asesidaa_GC-local-server-re…/GC-local-server-rewrite/models/TotalTrophy.cs
T
2022-04-05 01:55:32 +08:00

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; }
}