UserPostQueries.php: add user post queries class

This commit is contained in:
Zankaria 2024-10-15 18:35:32 +02:00
parent 1d41ffbe4f
commit 71416afc75
2 changed files with 130 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<?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;
}