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.

GetCustomersDto.cs 361B

2 years ago
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. }