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.

GetAboutDto.cs 375B

1234567891011121314
  1. namespace Karsha_Site.Application.Services.About.Queries.GetAbout
  2. {
  3. public class GetAboutDto
  4. {
  5. public int ID { get; set; }
  6. public string Title { get; set; }
  7. public string Description { get; set; }
  8. public int? PostiCode { get; set; }
  9. public int? PostiSandogh { get; set; }
  10. public string Email { get; set; }
  11. public string Instagram { get; set; }
  12. }
  13. }