24 lines
576 B
C#
24 lines
576 B
C#
|
using System.Xml.Serialization;
|
|||
|
|
|||
|
namespace Application.Dto;
|
|||
|
|
|||
|
public class CoinDto
|
|||
|
{
|
|||
|
[XmlElement(ElementName = "card_id")]
|
|||
|
public long CardId { get; set; }
|
|||
|
|
|||
|
[XmlElement(ElementName = "current")]
|
|||
|
public int CurrentCoins { get; set; }
|
|||
|
|
|||
|
[XmlElement(ElementName = "total")]
|
|||
|
public int TotalCoins { get; set; }
|
|||
|
|
|||
|
[XmlElement("monthly")]
|
|||
|
public int MonthlyCoins { get; set; }
|
|||
|
|
|||
|
[XmlElement("created")]
|
|||
|
public string Created { get; set; } = string.Empty;
|
|||
|
|
|||
|
[XmlElement("modified")]
|
|||
|
public string Modified { get; set; } = string.Empty;
|
|||
|
}
|