Data: make more proper Model directory and namespace

This commit is contained in:
Zankaria 2025-07-26 23:56:25 +02:00
parent 1c78a7ad21
commit 80d7ad9322
4 changed files with 4 additions and 4 deletions

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