Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AboutUs.cs 685B

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