57 lines
1.1 KiB
C#
57 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|||
|
|
|||
|
namespace RustTools.DataList
|
|||
|
{
|
|||
|
class HomeBanner
|
|||
|
{
|
|||
|
public int code
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public string message
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public Data[] data
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public class Data
|
|||
|
{
|
|||
|
public string id
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public string title
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public string owner
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public string picture
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public string link
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public DateTime createTime
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public DateTime expirationTime
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|