Files
AlquilaFacil/Entidades/Dto/PropiedadesDto.cs

10 lines
304 B
C#

namespace Entidades.Dto;
public class PropiedadesDto {
public int id { get; set; }
public string Ubicacion { get; set; } = "";
public int canthabitaciones { get; set; }
public int piso { get; set; }
public string letra { get; set; } = "";
public string Tipo { get; set; } = "";
}