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/Cheese/Models/CheeseUpInfo.cs

24 lines
684 B

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
namespace DownKyi.Core.BiliApi.Cheese.Models
{
public class CheeseUpInfo : BaseModel
{
[JsonProperty("avatar")]
public string Avatar { get; set; }
[JsonProperty("brief")]
public string Brief { get; set; }
[JsonProperty("follower")]
public long Follower { get; set; }
[JsonProperty("is_follow")]
public int IsFollow { get; set; }
[JsonProperty("link")]
public string Link { get; set; }
[JsonProperty("mid")]
public long Mid { get; set; }
[JsonProperty("uname")]
public string Name { get; set; }
}
}