2023-02-16 09:53:02 +01:00
|
|
|
|
namespace Application.Game.Rank;
|
2023-02-14 19:14:19 +01:00
|
|
|
|
|
|
|
|
|
public class RankStatus
|
|
|
|
|
{
|
|
|
|
|
[XmlElement("table_name")]
|
|
|
|
|
public string TableName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[XmlElement("start_date")]
|
|
|
|
|
public string StartDate { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[XmlElement("end_date")]
|
|
|
|
|
public string EndDate { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[XmlElement("status")]
|
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("rows")]
|
|
|
|
|
public int Rows { get; set; }
|
|
|
|
|
}
|