mirror of https://github.com/leiurayer/downkyi
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.
22 lines
551 B
22 lines
551 B
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models
|
|
{
|
|
// https://space.bilibili.com/ajax/settings/getSettings?mid={mid}
|
|
public class SpaceSettingsOrigin : BaseModel
|
|
{
|
|
[JsonProperty("status")]
|
|
public bool Status { get; set; }
|
|
[JsonProperty("data")]
|
|
public SpaceSettings Data { get; set; }
|
|
}
|
|
|
|
public class SpaceSettings : BaseModel
|
|
{
|
|
// ...
|
|
[JsonProperty("toutu")]
|
|
public SpaceSettingsToutu Toutu { get; set; }
|
|
}
|
|
}
|