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/Users/Models/UserRelationStat.cs

27 lines
774 B

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
namespace DownKyi.Core.BiliApi.Users.Models
{
// https://api.bilibili.com/x/relation/stat?vmid={mid}
public class UserRelationStatOrigin : BaseModel
{
[JsonProperty("data")]
public UserRelationStat Data { get; set; }
}
public class UserRelationStat : BaseModel
{
[JsonProperty("mid")]
public long Mid { get; set; }
[JsonProperty("following")]
public long Following { get; set; } // 关注数
[JsonProperty("whisper")]
public long Whisper { get; set; }
[JsonProperty("black")]
public long Black { get; set; }
[JsonProperty("follower")]
public long Follower { get; set; } // 粉丝数
}
}