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.
44 lines
1.4 KiB
44 lines
1.4 KiB
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Cheese.Models
|
|
{
|
|
public class CheeseEpisode : BaseModel
|
|
{
|
|
[JsonProperty("aid")]
|
|
public long Aid { get; set; }
|
|
[JsonProperty("catalogue_index")]
|
|
public int CatalogueIndex { get; set; }
|
|
[JsonProperty("cid")]
|
|
public long Cid { get; set; }
|
|
[JsonProperty("cover")]
|
|
public string Cover { get; set; }
|
|
[JsonProperty("duration")]
|
|
public long Duration { get; set; }
|
|
[JsonProperty("from")]
|
|
public string From { get; set; }
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
[JsonProperty("index")]
|
|
public int Index { get; set; }
|
|
[JsonProperty("page")]
|
|
public int Page { get; set; }
|
|
[JsonProperty("play")]
|
|
public long Play { get; set; }
|
|
[JsonProperty("play_way")]
|
|
public int PlayWay { get; set; }
|
|
[JsonProperty("play_way_format")]
|
|
public string PlayWayFormat { get; set; }
|
|
[JsonProperty("release_date")]
|
|
public long ReleaseDate { get; set; }
|
|
[JsonProperty("status")]
|
|
public int Status { get; set; }
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
[JsonProperty("watched")]
|
|
public bool Watched { get; set; }
|
|
[JsonProperty("watchedHistory")]
|
|
public int WatchedHistory { get; set; }
|
|
}
|
|
}
|