nomás me faltan los put para propiedades

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-11-17 02:04:26 -03:00
parent 52e4afb7c4
commit d2adb7733e
12 changed files with 211 additions and 23 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Entidades.Dto;
public class PropiedadesDto {
public int id { get; set; }
public string Ubicacion { get; set; } = "";
public int canthabitaciones { get; set; }
public string piso { get; set; } = "";
public string letra { get; set; } = "";
public string TipoPropiedad { get; set; } = "";
}