API
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Agency.cs 628B

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