mirror of https://github.com/leiurayer/downkyi
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.
37 lines
1.1 KiB
37 lines
1.1 KiB
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
// https://api.bilibili.com/x/space/channel/video?mid={mid}&page_num={pageNum}&page_size={pageSize}
|
|
public class SpaceSeasonsSeriesOrigin : BaseModel
|
|
{
|
|
//[JsonProperty("code")]
|
|
//public int Code { get; set; }
|
|
//[JsonProperty("message")]
|
|
//public string Message { get; set; }
|
|
//[JsonProperty("ttl")]
|
|
//public int Ttl { get; set; }
|
|
[JsonProperty("data")]
|
|
public SpaceSeasonsSeriesData Data { get; set; }
|
|
}
|
|
|
|
public class SpaceSeasonsSeriesData : BaseModel
|
|
{
|
|
[JsonProperty("items_lists")]
|
|
public SpaceSeasonsSeries ItemsLists { get; set; }
|
|
}
|
|
|
|
public class SpaceSeasonsSeries : BaseModel
|
|
{
|
|
[JsonProperty("page")]
|
|
public SpaceSeasonsSeriesPage Page { get; set; }
|
|
[JsonProperty("seasons_list")]
|
|
public List<SpaceSeasons> SeasonsList { get; set; }
|
|
[JsonProperty("series_list")]
|
|
public List<SpaceSeries> SeriesList { get; set; }
|
|
}
|
|
|
|
}
|