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.

AboutUs.cs 685B

2 years ago
1234567891011121314151617181920212223
  1. 
  2. using Karsha_Site.Domain.Entities.Commons;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Karsha_Site.Domain.Entities.About
  9. {
  10. public class AboutUs : BaseEntity
  11. {
  12. public string Title { get; set; }
  13. public string Description { get; set; }
  14. public int? PostiCode { get; set; }
  15. public int? PostiSandogh { get; set; }
  16. public string Email { get; set; }
  17. public string Instagram { get; set; }
  18. public virtual ICollection<AboutTels> AboutTels { get; set; }
  19. public virtual ICollection<AboutAddress> AboutAddress { get; set; }
  20. }
  21. }