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
559 B
22 lines
559 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/channel/list?mid={mid}
|
|
public class SpaceChannelOrigin : BaseModel
|
|
{
|
|
[JsonProperty("data")]
|
|
public SpaceChannel Data { get; set; }
|
|
}
|
|
|
|
public class SpaceChannel : BaseModel
|
|
{
|
|
[JsonProperty("count")]
|
|
public int Count { get; set; }
|
|
[JsonProperty("list")]
|
|
public List<SpaceChannelList> List { get; set; }
|
|
}
|
|
}
|