WIn_RustTools/RustTools/DataList/HomeBanner.cs

56 lines
941 B
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;
public class HomeBanner
2024-07-23 12:23:55 +00:00
{
public int code
{
get; set;
}
public string message
{
get; set;
}
public Data[] data
2024-07-23 12:23:55 +00:00
{
get; set;
}
public class Data
{
public string id
2024-07-23 12:23:55 +00:00
{
get; set;
}
public string title
2024-07-23 12:23:55 +00:00
{
get; set;
}
public string owner
2024-07-23 12:23:55 +00:00
{
get; set;
}
public string picture
2024-07-23 12:23:55 +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
}
}
}