<?php
declare(strict_types=1);
namespace Slivki\Message\Query\Beauty\Offer;
use Slivki\Messenger\Query\QueryInterface;
final class GetMastersQuery implements QueryInterface
{
private int $offerId;
public function __construct(int $offerId)
{
$this->offerId = $offerId;
}
public function getOfferId(): int
{
return $this->offerId;
}
}