WIn_RustTools/RustTools/DataList/HomeBanner.cs

57 lines
1.1 KiB
C#
Raw Normal View History

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;
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;
}
}
}
}