38 lines
969 B
C#
38 lines
969 B
C#
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 decimal Monto { get; set; }
|
|
|
|
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
|
|
|
|
public virtual Cliente? DnipropietarioNavigation { get; set; }
|
|
|
|
public virtual EstadoPropiedad? IdestadoNavigation { get; set; }
|
|
|
|
public virtual TipoPropiedad IdtipropiedadNavigation { get; set; } = null!;
|
|
|
|
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
|
|
|
|
public virtual ICollection<Servicio> IdServicios { get; set; } = new List<Servicio>();
|
|
}
|