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.
30 lines
894 B
30 lines
894 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Video.Models
|
|
{
|
|
public class UgcEpisode : BaseModel
|
|
{
|
|
[JsonProperty("season_id")]
|
|
public long SeasonId { get; set; }
|
|
[JsonProperty("section_id")]
|
|
public long SectionId { get; set; }
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
[JsonProperty("aid")]
|
|
public long Aid { get; set; }
|
|
[JsonProperty("cid")]
|
|
public long Cid { get; set; }
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
[JsonProperty("attribute")]
|
|
public int Attribute { get; set; }
|
|
[JsonProperty("arc")]
|
|
public UgcArc Arc { get; set; }
|
|
[JsonProperty("page")]
|
|
public VideoPage Page { get; set; }
|
|
[JsonProperty("bvid")]
|
|
public string Bvid { get; set; }
|
|
}
|
|
}
|