2024-07-23 12:23:55 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
|
|
2024-07-25 13:18:43 +00:00
|
|
|
|
namespace RustTools.DataList;
|
|
|
|
|
|
|
|
|
|
public class HomeBanner
|
2024-07-23 12:23:55 +00:00
|
|
|
|
{
|
2024-07-25 13:18:43 +00:00
|
|
|
|
public int code
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string message
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public Data[] data
|
2024-07-23 12:23:55 +00:00
|
|
|
|
{
|
2024-07-25 13:18:43 +00:00
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public class Data
|
|
|
|
|
{
|
|
|
|
|
public string id
|
2024-07-23 12:23:55 +00:00
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2024-07-25 13:18:43 +00:00
|
|
|
|
public string title
|
2024-07-23 12:23:55 +00:00
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2024-07-25 13:18:43 +00:00
|
|
|
|
public string owner
|
2024-07-23 12:23:55 +00:00
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2024-07-25 13:18:43 +00:00
|
|
|
|
public string picture
|
2024-07-23 12:23:55 +00:00
|
|
|
|
{
|
2024-07-25 13:18:43 +00:00
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string link
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public DateTime createTime
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public DateTime expirationTime
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
2024-07-23 12:23:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|