API
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.

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Model.Properties;
  3. namespace UnivateProperties_API.Model.Users
  4. {
  5. public class Agency : BaseEntity
  6. {
  7. #region Constructor
  8. public Agency()
  9. {
  10. }
  11. #endregion Constructor
  12. #region Properties
  13. public string AgencyName { get; set; }
  14. public string EAABEFFCNumber { get; set; }
  15. public string CompanyRegNumber { get; set; }
  16. public virtual ICollection<Agent> Agents { get; set; }
  17. public virtual ICollection<Property> Properties { get; set; }
  18. #endregion Properties
  19. }
  20. }