using System.Collections.Generic; using UnivateProperties_API.Model.Properties; namespace UnivateProperties_API.Model.Users { public class Agency : BaseEntity { #region Constructor public Agency() { } #endregion Constructor #region Properties public string AgencyName { get; set; } public string EAABEFFCNumber { get; set; } public string CompanyRegNumber { get; set; } public virtual ICollection Agents { get; set; } public virtual ICollection Properties { get; set; } #endregion Properties } }