Uwaa/Pleroma/Models/Page.cs

16 lines
312 B
C#
Raw Normal View History

2025-01-04 15:54:59 +01:00
namespace Uwaa.Pleroma;
public class Page
{
[JsonPropertyName("count")]
public int Count { get; set; }
[JsonPropertyName("page_size")]
public int PageSize { get; set; }
}
2025-01-07 00:58:20 +01:00
public class UsersPage : Page
2025-01-04 15:54:59 +01:00
{
[JsonPropertyName("users")]
public AccountInfo[] Users { get; set; } = null!;
}