traidas entidades de la db
Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user