forked from leftypol/leftypol
Data: make more proper Model directory and namespace
This commit is contained in:
parent
1c78a7ad21
commit
80d7ad9322
4 changed files with 4 additions and 4 deletions
15
inc/Data/Model/PageFetchResult.php
Normal file
15
inc/Data/Model/PageFetchResult.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
namespace Vichan\Data\Model;
|
||||
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue