10 lines
237 B
C#
10 lines
237 B
C#
namespace Application.Dto.Game;
|
|
|
|
public class TotalTrophyDto
|
|
{
|
|
[XmlElement(ElementName = "card_id")]
|
|
public long CardId { get; set; }
|
|
|
|
[XmlElement(ElementName = "total_trophy_num")]
|
|
public int TrophyNum { get; set; }
|
|
} |