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.

12345678910111213
  1. using Karsha_Site.Domain.Entities.Commons;
  2. namespace Karsha_Site.Domain.Entities.About
  3. {
  4. public class AboutAddress : BaseEntity
  5. {
  6. public virtual AboutUs About { get; set; }
  7. public int AboutID { get; set; }
  8. public string DisplayName { get; set; }
  9. public string Address { get; set; }
  10. public bool IsMain { get; set; }
  11. }
  12. }