您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ResultGetCustomerDto.cs 345B

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