using System; using System.Collections.Generic; namespace Entidades; public partial class Propietario : Usuario { public virtual ICollection Contratos { get; set; } = new List(); public virtual ICollection Propiedades { get; set; } = new List(); public virtual ICollection Idgrupos { get; set; } = new List(); }