12 lines
436 B
C#
12 lines
436 B
C#
namespace Entidades.Dto;
|
|
public class PropiedadesVentaDto {
|
|
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 decimal Monto { get; set; }
|
|
public string Divisa { get; set; }="";
|
|
} |