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