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 List { get; set; } } }