49 lines
761 B
C#
49 lines
761 B
C#
namespace RustTools.DataList;
|
|
|
|
public 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;
|
|
}
|
|
}
|
|
}
|