19 lines
337 B
PHP
19 lines
337 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Feature\Example\Dto;
|
|
|
|
use Diffhead\PHP\Dto\Dto;
|
|
use Diffhead\PHP\Dto\Property;
|
|
|
|
/**
|
|
* @property \Diffhead\PHP\Dto\Property<int> $page
|
|
* @property \Diffhead\PHP\Dto\Property<int> $perPage
|
|
*/
|
|
class SearchUsers extends Dto
|
|
{
|
|
protected Property $page;
|
|
protected Property $perPage;
|
|
}
|