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