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

30 lines
856 B

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<long> 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
}
}