using System; using System.Collections.Generic; namespace Entidades; public partial class TipoPropiedad { public int Id { get; set; } public string Descripcion { get; set; } = null!; public virtual ICollection Propiedades { get; set; } = new List(); }