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.
downkyi/DownKyi.Core/BiliApi/Video/Models/UgcArc.cs

44 lines
1.4 KiB

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
namespace DownKyi.Core.BiliApi.Video.Models
{
public class UgcArc : BaseModel
{
[JsonProperty("aid")]
public long Aid { get; set; }
[JsonProperty("videos")]
public int Videos { get; set; }
[JsonProperty("type_id")]
public int TypeId { get; set; }
[JsonProperty("type_name")]
public string TypeName { get; set; }
[JsonProperty("copyright")]
public int Copyright { get; set; }
[JsonProperty("pic")]
public string Pic { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("pubdate")]
public long Pubdate { get; set; }
[JsonProperty("ctime")]
public long Ctime { get; set; }
[JsonProperty("desc")]
public string Desc { get; set; }
[JsonProperty("state")]
public int State { get; set; }
[JsonProperty("duration")]
public long Duration { get; set; }
//[JsonProperty("rights")]
//public VideoRights Rights { get; set; }
[JsonProperty("author")]
public VideoOwner Author { get; set; }
[JsonProperty("stat")]
public VideoStat Stat { get; set; }
[JsonProperty("dynamic")]
public string Dynamic { get; set; }
[JsonProperty("dimension")]
public Dimension Dimension { get; set; }
}
}