mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
11 lines
322 B
C#
11 lines
322 B
C#
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models;
|
|
|
|
public class SpacePublicationPage : BaseModel
|
|
{
|
|
[JsonProperty("pn")] public int Pn { get; set; }
|
|
[JsonProperty("ps")] public int Ps { get; set; }
|
|
[JsonProperty("count")] public int Count { get; set; }
|
|
} |