using System; using System.Collections.Generic; namespace Entidades; public partial class Propiedade { public int Id { get; set; } public string Ubicacion { get; set; } = null!; public int Canthabitaciones { get; set; } public int? Piso { get; set; } public string? Letra { get; set; } public long? Dnipropietario { get; set; } public int Idtipropiedad { get; set; } public int? Idestado { get; set; } public virtual ICollection Contratos { get; set; } = new List(); public virtual Cliente? DnipropietarioNavigation { get; set; } public virtual EstadoPropiedad? IdestadoNavigation { get; set; } public virtual TipoPropiedad IdtipropiedadNavigation { get; set; } = null!; public virtual ICollection Venta { get; set; } = new List(); public virtual ICollection IdServicios { get; set; } = new List(); }