feat: filtering of custom destinations by hotel
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Model;
|
||||
|
||||
class DestinationFilterDto extends AbstractFilterDto
|
||||
{
|
||||
protected array $hotels = [];
|
||||
|
||||
public function getHotels(): ?array
|
||||
{
|
||||
return $this->hotels;
|
||||
}
|
||||
|
||||
public function setHotels(array $hotels): static
|
||||
{
|
||||
$this->hotels = $hotels;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user