src/Query/SolicitudCategoria/RespuestasQueryDTO.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Query\SolicitudCategoria;
  3. use App\Interfaces\CategoriaRepositoryInterface;
  4. use App\QueryBus\QueryInterface;
  5. final class RespuestasQueryDTO implements QueryInterface
  6. {
  7. public function __construct(
  8. public readonly ?string $search,
  9. public readonly int $categoriaFiltro = 0,
  10. public readonly string $categoria,
  11. public readonly int $page = 1,
  12. public readonly ?int $limit = null
  13. ) {}
  14. }