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