Skip to content
Snippets Groups Projects
RestaurantListingElementDto.php 291 B
Newer Older
<?php

namespace App\Dto;

class RestaurantListingElementDto implements DtoInterface
{
    public string $id;

    public string $name;

    public string $code;

    public RestaurantTypeDto $type;

    public ?string $check;

    public ?FileDto $image;

    public string $detail_link;
}