1
0
mirror of synced 2024-12-19 01:35:53 +01:00
GC-local-server-rewrite/Application/Dto/TotalTrophyDto.cs
2023-02-16 16:53:02 +08:00

10 lines
232 B
C#

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