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.
26 lines
753 B
26 lines
753 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Video.Models
|
|
{
|
|
public class VideoPage : BaseModel
|
|
{
|
|
[JsonProperty("cid")]
|
|
public long Cid { get; set; }
|
|
[JsonProperty("page")]
|
|
public int Page { get; set; }
|
|
[JsonProperty("from")]
|
|
public string From { get; set; }
|
|
[JsonProperty("part")]
|
|
public string Part { get; set; }
|
|
[JsonProperty("duration")]
|
|
public long Duration { get; set; }
|
|
[JsonProperty("vid")]
|
|
public string Vid { get; set; }
|
|
[JsonProperty("weblink")]
|
|
public string Weblink { get; set; }
|
|
[JsonProperty("dimension")]
|
|
public Dimension Dimension { get; set; }
|
|
}
|
|
}
|