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!;
|
|
|
|
|
}
|