forked from leftypol/leftypol
16 lines
233 B
PHP
16 lines
233 B
PHP
|
<?php
|
||
|
namespace Vichan\Data;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* A page of user posts.
|
||
|
*/
|
||
|
class PageFetchResult {
|
||
|
/**
|
||
|
* @var array[array] Posts grouped by board uri.
|
||
|
*/
|
||
|
public array $by_uri;
|
||
|
public ?string $cursor_prev;
|
||
|
public ?string $cursor_next;
|
||
|
}
|