mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
20 lines
454 B
C#
20 lines
454 B
C#
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Bangumi.Models;
|
|
|
|
public class BangumiUpInfo : BaseModel
|
|
{
|
|
[JsonProperty("avatar")] public string Avatar { get; set; }
|
|
|
|
// follower
|
|
// is_follow
|
|
[JsonProperty("mid")] public long Mid { get; set; }
|
|
|
|
// pendant
|
|
// theme_type
|
|
[JsonProperty("uname")] public string Name { get; set; }
|
|
// verify_type
|
|
// vip_status
|
|
// vip_type
|
|
} |