a ver si no me olcideo de commitear otra vez

This commit is contained in:
2024-09-03 23:47:16 -03:00
parent 5d3636ae22
commit b130f55933
25 changed files with 820 additions and 108 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Propiedad
{
public int Id { get; set; }
public long? Dni { get; set; }
public string Ubicacion { get; set; } = null!;
public int? Canthabitaciones { get; set; }
public bool? Tienecocina { get; set; }
public int? Piso { get; set; }
public string? Letra { get; set; }
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
public virtual Propietario? DniNavigation { get; set; }
}