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

GetCustomersDto.cs 361B

12345678910111213
  1. namespace Karsha_Site.Application.Services.Costomers.Queries.GetCustomers
  2. {
  3. public class GetAboutAddressDto
  4. {
  5. public int ID { get; set; }
  6. public int Code { get; set; }
  7. public string FullName { get; set; }
  8. public string Link { get; set; }
  9. public string Address { get; set; }
  10. public string Image { get; set; }
  11. }
  12. }