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/UgcStat.cs

30 lines
895 B

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
namespace DownKyi.Core.BiliApi.Video.Models
{
public class UgcStat : BaseModel
{
[JsonProperty("season_id")]
public long SeasonId { get; set; }
[JsonProperty("view")]
public long View { get; set; }
[JsonProperty("danmaku")]
public long Danmaku { get; set; }
[JsonProperty("reply")]
public long Reply { get; set; }
[JsonProperty("fav")]
public long Favorite { get; set; }
[JsonProperty("coin")]
public long Coin { get; set; }
[JsonProperty("share")]
public long Share { get; set; }
[JsonProperty("now_rank")]
public long NowRank { get; set; }
[JsonProperty("his_rank")]
public long HisRank { get; set; }
[JsonProperty("like")]
public long Like { get; set; }
}
}