You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ResultAboutAddressDto.cs 346B

123456789101112
  1. using System.Collections.Generic;
  2. namespace Karsha_Site.Application.Services.About.Queries.GetAboutAddress
  3. {
  4. public class ResultAboutAddressDto
  5. {
  6. public List<GetAboutAddressDto> AboutAddressDto { get; set; }
  7. public int Rows { get; set; }
  8. public int CurrentPage { get; set; }
  9. public int PageSize { get; set; }
  10. }
  11. }