lo que hice hoy
This commit is contained in:
10
Entidades/Dto/CanonDto.cs
Normal file
10
Entidades/Dto/CanonDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Entidades.Dto;
|
||||
public class CanonDto{
|
||||
public long Id { get; set;}
|
||||
public int MesNum { get; set;}
|
||||
public DateTime Mes { get; set;}
|
||||
public Decimal Monto { get; set;}
|
||||
public string Divisa { get; set;} = "";
|
||||
public bool Pago { get; set;}
|
||||
|
||||
}
|
||||
8
Entidades/Dto/ContratoPropiedadDto.cs
Normal file
8
Entidades/Dto/ContratoPropiedadDto.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Entidades.Dto;
|
||||
public class ContratoPropiedadDto : ContratoDto {
|
||||
public int Habitaciones { get; set; }
|
||||
public int Piso { get; set;}
|
||||
public string Letra { get; set; } = "";
|
||||
public int MesesAumento { get; set; }
|
||||
public int MesesDuracion { get; set; }
|
||||
}
|
||||
@@ -6,6 +6,6 @@ public class PrecontratoDto {
|
||||
public int CantidadGarantes { get; set; }
|
||||
public int MesesHastaAumento { get; set; }
|
||||
public bool TieneOpcionVenta { get; set; }
|
||||
public string fechaprimernotificacion { get; set; }
|
||||
public string fechaprimernotificacion { get; set; } = "";
|
||||
public int MesesDuracionContrato { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user