- using Karsha_Site.Domain.Entities.Commons;
-
- namespace Karsha_Site.Domain.Entities.About
- {
- public class AboutAddress : BaseEntity
- {
- public virtual AboutUs About { get; set; }
- public int AboutID { get; set; }
- public string DisplayName { get; set; }
- public string Address { get; set; }
- public bool IsMain { get; set; }
- }
- }
|