|
123456789101112 |
- using System.Collections.Generic;
-
- namespace Karsha_Site.Application.Services.About.Queries.GetAbout
- {
- public class ResultAboutDto
- {
- public List<GetAboutDto> AboutDto { get; set; }
- public int Rows { get; set; }
- public int CurrentPage { get; set; }
- public int PageSize { get; set; }
- }
- }
|