este es el trabajo de hoy
This commit is contained in:
12
Entidades/Dto/PropiedadesVentaDto.cs
Normal file
12
Entidades/Dto/PropiedadesVentaDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }="";
|
||||
}
|
||||
6
Entidades/Dto/SetVentaDto.cs
Normal file
6
Entidades/Dto/SetVentaDto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Entidades.Dto;
|
||||
public class SetVentaDto {
|
||||
public int idpropiedad {get; set;}
|
||||
public decimal monto {get; set;}
|
||||
public int iddivisa {get; set;}
|
||||
}
|
||||
Reference in New Issue
Block a user