File "PaginationDto.php"
Full path: /var/www/html/back/.git/objects/ab/PaginationDto.php
File
size: 0.24 KB (250 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?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,
) {
}
}