Skip to content
Snippets Groups Projects
NewsListDto.php 246 B
Newer Older
<?php

namespace App\Dto;

class NewsListDto implements DtoInterface
{
    public PaginationDto $pagination;

    /** @var DtoCollection<NewsListingElementDto>  */
    public DtoCollection $list;

    public NewsFilterVariants $filterVariants;
}