|
123456789101112 |
- using System.Collections.Generic;
-
- namespace Karsha_Site.Application.Services.Costomers.Queries.GetCustomers
- {
- public class ResultAboutAddressDto
- {
- public List<GetAboutAddressDto> CustomersDtos { get; set; }
- public int Rows { get; set; }
- public int CurrentPage { get; set; }
- public int PageSize { get; set; }
- }
- }
|