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.
24 lines
707 B
24 lines
707 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
public class BangumiFollowNewEp : BaseModel
|
|
{
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
[JsonProperty("index_show")]
|
|
public string IndexShow { get; set; }
|
|
[JsonProperty("cover")]
|
|
public string Cover { get; set; }
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
[JsonProperty("long_title")]
|
|
public string LongTitle { get; set; }
|
|
[JsonProperty("pub_time")]
|
|
public string PubTime { get; set; }
|
|
[JsonProperty("duration")]
|
|
public long Duration { get; set; }
|
|
}
|
|
}
|