implementado hasta el ultimo paso antes de hacer la tercera notificacion

This commit is contained in:
2025-01-08 02:53:31 -03:00
parent 9993e427e0
commit cf07c51eb1
18 changed files with 482 additions and 43 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Entidades.Dto;
public class PrecontratoDto {
public string EmailInquilino { get; set; } = "";
public string EmailPropietario { get; set; } = "";
public int IdPropiedad { get; set; }
public int CantidadGarantes { get; set; }
public int MesesHastaAumento { get; set; }
public bool TieneOpcionVenta { get; set; }
public DateTime fechaprimernotificacion { get; set; }
}