1
0
mirror of synced 2024-12-01 01:07:18 +01:00
GC-local-server-rewrite/Application/Dto/TotalTrophyDto.cs
2023-02-14 00:38:19 +08:00

12 lines
265 B
C#

using System.Xml.Serialization;
namespace Application.Dto;
public class TotalTrophyDto
{
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "total_trophy_num")]
public int TrophyNum { get; set; }
}