api-models-php/src/RegionalChapterFilter.php
Maximilian Ruta d41e34aa56 Add models
2019-07-18 22:19:01 +02:00

48 lines
716 B
PHP

<?php
namespace Netzbegruenung\Api\Model;
class RegionalChapterFilter
{
/**
* @var int|null
*/
protected $limit;
/**
* @var int|null
*/
protected $offset;
/**
* @return int|null
*/
public function getLimit(): ?int
{
return $this->limit;
}
/**
* @param int|null $limit
*/
public function setLimit(?int $limit): void
{
$this->limit = $limit;
}
/**
* @return int|null
*/
public function getOffset(): ?int
{
return $this->offset;
}
/**
* @param int|null $offset
*/
public function setOffset(?int $offset): void
{
$this->offset = $offset;
}
}