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.
28 lines
742 B
28 lines
742 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.BiliApi.Video.Models
|
|
{
|
|
// https://api.bilibili.com/x/web-interface/dynamic/region
|
|
public class RegionDynamicOrigin : BaseModel
|
|
{
|
|
//[JsonProperty("code")]
|
|
//public int Code { get; set; }
|
|
//[JsonProperty("message")]
|
|
//public string Message { get; set; }
|
|
//[JsonProperty("ttl")]
|
|
//public int Ttl { get; set; }
|
|
[JsonProperty("data")]
|
|
public RegionDynamic Data { get; set; }
|
|
}
|
|
|
|
public class RegionDynamic : BaseModel
|
|
{
|
|
[JsonProperty("archives")]
|
|
public List<DynamicVideoView> Archives { get; set; }
|
|
// page
|
|
}
|
|
|
|
}
|