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.
27 lines
736 B
27 lines
736 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
// https://api.bilibili.com/x/space/bangumi/follow/list?vmid={mid}&type={type:D}&pn={pn}&ps={ps}
|
|
public class BangumiFollowOrigin : BaseModel
|
|
{
|
|
[JsonProperty("data")]
|
|
public BangumiFollowData Data { get; set; }
|
|
}
|
|
|
|
public class BangumiFollowData : BaseModel
|
|
{
|
|
[JsonProperty("list")]
|
|
public List<BangumiFollow> List { get; set; }
|
|
[JsonProperty("pn")]
|
|
public int Pn { get; set; }
|
|
[JsonProperty("ps")]
|
|
public int Ps { get; set; }
|
|
[JsonProperty("total")]
|
|
public int Total { get; set; }
|
|
}
|
|
|
|
}
|