Newer
Older
<?php
namespace App\Dto;
use Ramsey\Collection\Collection;
class RestaurantListDto implements DtoInterface
{
public PaginationDto $pagination;
/** @var DtoCollection<RestaurantListingElementDto> */
public DtoCollection $list;
public RestaurantFilterVariantsDto $filterVariants;
}