10 lines
304 B
C#
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; } = "";
|
|
}
|