Files
AlquilaFacil/Entidades/Dto/PropiedadDto.cs
2024-11-11 11:55:45 -03:00

9 lines
306 B
C#

namespace Entidades.Dto;
public class PropiedadDto {
public string Ubicacion { get; set; } = null!;
public int Canthabitaciones { get; set; }
public int? Piso { get; set; }
public string? Letra { get; set; }
public string Email { get; set; }
public int Idtipropiedad { get; set; }
}