mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
11 lines
309 B
C#
11 lines
309 B
C#
using DownKyi.Core.BiliApi.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Users.Models;
|
|
|
|
public class SpaceSeasonsSeriesPage : BaseModel
|
|
{
|
|
[JsonProperty("page_num")] public int PageNum;
|
|
[JsonProperty("page_size")] public int PageSize;
|
|
[JsonProperty("total")] public int Total;
|
|
} |