Skeleton is ready
This commit is contained in:
18
app/Feature/Example/Dto/SearchUsers.php
Normal file
18
app/Feature/Example/Dto/SearchUsers.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user