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
539 B
22 lines
539 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
// https://api.bilibili.com/x/space/arc/search
|
|
public class SpacePublicationOrigin : BaseModel
|
|
{
|
|
[JsonProperty("data")]
|
|
public SpacePublication Data { get; set; }
|
|
}
|
|
|
|
public class SpacePublication : BaseModel
|
|
{
|
|
[JsonProperty("list")]
|
|
public SpacePublicationList List { get; set; }
|
|
[JsonProperty("page")]
|
|
public SpacePublicationPage Page { get; set; }
|
|
}
|
|
|
|
}
|