<?php

namespace IQDEV\Search;

final class Pagination
{
    public int $limit;
    public int $offset;

    public function __construct(int $limit = 20, int $offset = 0)
    {
        $this->limit = $limit;
        $this->offset = $offset;
    }
}