File "PaginationDto.php"

Full Path: /var/www/html/back/app/Responses/PaginationDto.php
File size: 250 bytes
MIME-type: text/x-php
Charset: utf-8

<?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,
    ) {
    }
}