using DownKyi.Core.BiliApi.Models; using Newtonsoft.Json; using System.Collections.Generic; namespace DownKyi.Core.BiliApi.Users.Models { public class RelationFollowInfo : BaseModel { [JsonProperty("mid")] public long Mid { get; set; } [JsonProperty("attribute")] public int Attribute { get; set; } [JsonProperty("mtime")] public long Mtime { get; set; } [JsonProperty("tag")] public List Tag { get; set; } [JsonProperty("special")] public int Special { get; set; } // contract_info [JsonProperty("uname")] public string Name { get; set; } [JsonProperty("face")] public string Face { get; set; } [JsonProperty("sign")] public string Sign { get; set; } // official_verify // vip } }