mirror of
https://gh.wpcy.net/https://github.com/fairpm/aspirecloud.git
synced 2026-06-20 02:22:28 +08:00
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Values\WpOrg;
|
|
|
|
use App\Values\DTO;
|
|
|
|
readonly class PageInfo extends DTO
|
|
{
|
|
public function __construct(
|
|
public int $page,
|
|
public int $pages,
|
|
public int $results,
|
|
) {}
|
|
}
|