Skip to content
Snippets Groups Projects
RestaurantListDto.php 302 B
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;
}