26 lines
602 B
C#
26 lines
602 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 virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
|
|
|
|
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
|
|
|
|
public virtual Cliente? dnipropietarioNavigation { get; set; }
|
|
}
|