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.
22 lines
591 B
22 lines
591 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
// https://api.bilibili.com/pugv/app/web/season/page?mid={mid}&pn={pn}&ps={ps}
|
|
public class SpaceCheeseOrigin : BaseModel
|
|
{
|
|
[JsonProperty("data")]
|
|
public SpaceCheeseData Data { get; set; }
|
|
}
|
|
|
|
public class SpaceCheeseData : BaseModel
|
|
{
|
|
[JsonProperty("items")]
|
|
public List<SpaceCheese> Items { get; set; }
|
|
[JsonProperty("page")]
|
|
public SpaceCheesePage Page { get; set; }
|
|
}
|
|
}
|