9 lines
254 B
C#
9 lines
254 B
C#
|
|
using NetinaCMS.Domain.Dtos.SmallDto;
|
|||
|
|
|
|||
|
|
namespace NetinaCMS.Domain.Dtos.ResponseDtos;
|
|||
|
|
|
|||
|
|
public class GetBlogsResponseDto
|
|||
|
|
{
|
|||
|
|
public List<BlogSDto> Blogs { get; set; } = new();
|
|||
|
|
public PagerResponseDto Pager { get; set; } = new PagerResponseDto();
|
|||
|
|
}
|