2023-02-09 10:25:42 +01:00
|
|
|
|
using System.ComponentModel;
|
2023-02-08 14:33:22 +01:00
|
|
|
|
|
2023-02-16 17:38:01 +01:00
|
|
|
|
namespace Application.Dto.Game;
|
2023-02-08 14:33:22 +01:00
|
|
|
|
|
|
|
|
|
public class CardDto
|
|
|
|
|
{
|
|
|
|
|
[XmlElement(ElementName = "card_id")]
|
|
|
|
|
public long CardId { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement(ElementName = "player_name")]
|
2023-02-09 10:25:42 +01:00
|
|
|
|
[DefaultValue("")]
|
2023-02-08 14:33:22 +01:00
|
|
|
|
public string PlayerName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[XmlElement("score_i1")]
|
|
|
|
|
public long ScoreI1 { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("fcol1")]
|
|
|
|
|
public long Fcol1 { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("fcol2")]
|
|
|
|
|
public long Fcol2 { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("fcol3")]
|
|
|
|
|
public long Fcol3 { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("achieve_status")]
|
2023-02-09 10:25:42 +01:00
|
|
|
|
[DefaultValue("")]
|
2023-02-08 14:33:22 +01:00
|
|
|
|
public string AchieveStatus { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[XmlElement("created")]
|
2023-02-09 10:25:42 +01:00
|
|
|
|
[DefaultValue("")]
|
2023-02-08 14:33:22 +01:00
|
|
|
|
public string Created { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[XmlElement("modified")]
|
2023-02-09 10:25:42 +01:00
|
|
|
|
[DefaultValue("")]
|
2023-02-08 14:33:22 +01:00
|
|
|
|
public string Modified { get; set; } = string.Empty;
|
|
|
|
|
}
|