選択できるのは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. }