12 lines
265 B
C#
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; }
|
|
} |