1
0
mirror of synced 2024-11-27 23:50:49 +01:00
GC-local-server-rewrite/Application/Dto/Game/CoinDto.cs
2023-02-17 00:38:01 +08:00

22 lines
548 B
C#

namespace Application.Dto.Game;
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;
}