actualizacion de entidades
This commit is contained in:
+12
-8
@@ -5,21 +5,25 @@ namespace Entidades;
|
||||
|
||||
public partial class Propiedade
|
||||
{
|
||||
public int id { get; set; }
|
||||
public int Id { get; set; }
|
||||
|
||||
public string ubicacion { get; set; } = null!;
|
||||
public string Ubicacion { get; set; } = null!;
|
||||
|
||||
public int canthabitaciones { get; set; }
|
||||
public int Canthabitaciones { get; set; }
|
||||
|
||||
public int? piso { get; set; }
|
||||
public int? Piso { get; set; }
|
||||
|
||||
public string? letra { get; set; }
|
||||
public string? Letra { get; set; }
|
||||
|
||||
public long? dnipropietario { get; set; }
|
||||
public long? Dnipropietario { get; set; }
|
||||
|
||||
public int Idtipropiedad { 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; }
|
||||
|
||||
public virtual Cliente? dnipropietarioNavigation { get; set; }
|
||||
public virtual TipoPropiedad IdtipropiedadNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user