mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
19 lines
834 B
C#
19 lines
834 B
C#
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models;
|
|
|
|
public class SpaceChannelArchiveStat : BaseModel
|
|
{
|
|
[JsonProperty("aid")] public long Aid { get; set; }
|
|
[JsonProperty("view")] public long View { get; set; }
|
|
[JsonProperty("danmaku")] public long Danmaku { get; set; }
|
|
[JsonProperty("reply")] public long Reply { get; set; }
|
|
[JsonProperty("favorite")] 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; }
|
|
[JsonProperty("dislike")] public long Dislike { get; set; }
|
|
} |