1
0
mirror of synced 2024-11-24 06:20:12 +01:00
GC-local-server-rewrite/Application/Dto/Game/CardDto.cs
2023-02-17 00:38:01 +08:00

37 lines
894 B
C#

using System.ComponentModel;
namespace Application.Dto.Game;
public class CardDto
{
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "player_name")]
[DefaultValue("")]
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")]
[DefaultValue("")]
public string AchieveStatus { get; set; } = string.Empty;
[XmlElement("created")]
[DefaultValue("")]
public string Created { get; set; } = string.Empty;
[XmlElement("modified")]
[DefaultValue("")]
public string Modified { get; set; } = string.Empty;
}