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.
30 lines
901 B
30 lines
901 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
// https://api.bilibili.com/x/series/archives?mid={mid}&series_id={seriesId}&only_normal=true&sort=desc&pn={pn}&ps={ps}
|
|
public class SpaceSeriesDetailOrigin : 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 SpaceSeriesDetail Data { get; set; }
|
|
}
|
|
|
|
public class SpaceSeriesDetail : BaseModel
|
|
{
|
|
[JsonProperty("aids")]
|
|
public List<long> Aids { get; set; }
|
|
// page
|
|
[JsonProperty("archives")]
|
|
public List<SpaceSeasonsSeriesArchives> Archives { get; set; }
|
|
}
|
|
|
|
}
|