16 lines
No EOL
312 B
C#
16 lines
No EOL
312 B
C#
namespace Uwaa.Pleroma;
|
|
|
|
public class Page
|
|
{
|
|
[JsonPropertyName("count")]
|
|
public int Count { get; set; }
|
|
|
|
[JsonPropertyName("page_size")]
|
|
public int PageSize { get; set; }
|
|
}
|
|
|
|
public class UsersPage : Page
|
|
{
|
|
[JsonPropertyName("users")]
|
|
public AccountInfo[] Users { get; set; } = null!;
|
|
} |