Vous ne pouvez pas sélectionner plus de 25 sujets
			Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 123456789101112131415161718192021222324 | 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<Agent> Agents { get; set; }
        public virtual ICollection<Property> Properties { get; set; }
        #endregion Properties
    }
}
 |