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 virtual ICollection Contratos { get; set; } = new List(); public virtual ICollection Venta { get; set; } = new List(); public virtual Cliente? dnipropietarioNavigation { get; set; } }