<?php
declare(strict_types=1);
namespace Slivki\Message\Query\Beauty\Offer;
use Slivki\Messenger\Query\QueryInterface;
final class GetWorkExampleOfMasterQuery implements QueryInterface
{
private int $masterId;
private int $page;
private int $perPage;
public function __construct(int $masterId, int $page, int $perPage)
{
$this->masterId = $masterId;
$this->page = $page;
$this->perPage = $perPage;
}
public function getMasterId(): int
{
return $this->masterId;
}
public function getPage(): int
{
return $this->page;
}
public function getPerPage(): int
{
return $this->perPage;
}
}