You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using DownKyi.Core.BiliApi.Models;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
|
|
|
{
|
|
|
|
|
public class SpaceSeasonsSeriesArchives : BaseModel
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("aid")]
|
|
|
|
|
public long Aid { get; set; }
|
|
|
|
|
[JsonProperty("bvid")]
|
|
|
|
|
public string Bvid { get; set; }
|
|
|
|
|
[JsonProperty("ctime")]
|
|
|
|
|
public long Ctime { get; set; }
|
|
|
|
|
[JsonProperty("duration")]
|
|
|
|
|
public long Duration { get; set; }
|
|
|
|
|
[JsonProperty("interactive_video")]
|
|
|
|
|
public bool InteractiveVideo { get; set; }
|
|
|
|
|
[JsonProperty("pic")]
|
|
|
|
|
public string Pic { get; set; }
|
|
|
|
|
[JsonProperty("pubdate")]
|
|
|
|
|
public long Pubdate { get; set; }
|
|
|
|
|
[JsonProperty("stat")]
|
|
|
|
|
public SpaceSeasonsSeriesStat Stat { get; set; }
|
|
|
|
|
// state
|
|
|
|
|
[JsonProperty("title")]
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
// ugc_pay
|
|
|
|
|
}
|
|
|
|
|
}
|