WIn_RustTools/RustTools/DataList/HomeBanner.cs

49 lines
761 B
C#
Raw Permalink Normal View History

2024-08-15 01:40:33 +00:00
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
}
}
}