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.
26 lines
761 B
26 lines
761 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Bangumi.Models
|
|
{
|
|
public class BangumiStat : BaseModel
|
|
{
|
|
[JsonProperty("coins")]
|
|
public long Coins { get; set; }
|
|
[JsonProperty("danmakus")]
|
|
public long Danmakus { get; set; }
|
|
[JsonProperty("favorite")]
|
|
public long Favorite { get; set; }
|
|
[JsonProperty("favorites")]
|
|
public long Favorites { get; set; }
|
|
[JsonProperty("likes")]
|
|
public long Likes { get; set; }
|
|
[JsonProperty("reply")]
|
|
public long Reply { get; set; }
|
|
[JsonProperty("share")]
|
|
public long Share { get; set; }
|
|
[JsonProperty("views")]
|
|
public long Views { get; set; }
|
|
}
|
|
}
|