/var/www/html/back/app/Responses/PaginationDto.php
<?php

declare(strict_types=1);

namespace App\Responses;

class PaginationDto extends Dto
{
    public function __construct(
        public int     $per_page,
        public ?string $next_cursor,
        public ?string $prev_cursor,
    ) {
    }
}