1
0
mirror of synced 2024-12-03 18:27:19 +01:00
GC-local-server-rewrite/Application/Dto/Game/PlayNumRankDto.cs

31 lines
699 B
C#
Raw Normal View History

2023-02-16 17:38:01 +01:00
namespace Application.Dto.Game;
public class PlayNumRankDto
{
[XmlAttribute(AttributeName = "id")]
public int Id { get; set; }
[XmlElement("rank")]
public int Rank { get; set; }
[XmlElement("rank2")]
public int Rank2 { get; set; }
[XmlElement("prev_rank")]
public int PrevRank { get; set; }
[XmlElement("prev_rank2")]
public int PrevRank2 { get; set; }
[XmlElement("pcol1")]
public int Pcol1 { get; set; }
[XmlElement("score_bi1")]
public int ScoreBi1 { get; set; }
[XmlElement("title")]
public string Title { get; set; } = string.Empty;
[XmlElement("artist")]
public string Artist { get; set; } = string.Empty;
}