1
0
mirror of synced 2025-01-31 12:23:44 +01:00

10 lines
237 B
C#
Raw Normal View History

2023-02-17 00:38:01 +08:00
namespace Application.Dto.Game;
2023-02-14 00:38:19 +08:00
public class TotalTrophyDto
{
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "total_trophy_num")]
public int TrophyNum { get; set; }
}