Files
AlquilaFacil/Entidades/Dto/PropiedadesDto.cs
2025-01-13 20:31:09 -03:00

13 lines
423 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; } = "";
public string? Servicios {get;set;} = "";
public int Monto { get; set; }
public int Iddivisa { get; set; }
}