Falta hacer la notificacion nueva

This commit is contained in:
2025-01-08 23:50:32 -03:00
parent cf07c51eb1
commit 9a623a8b59
11 changed files with 396 additions and 30 deletions

View File

@@ -2,6 +2,7 @@ namespace Entidades.Dto;
public class NotificacionDto {
public string Remitente { get; set; } ="";
public string Accion { get; set; } ="";
public string Receptor { get; set; } ="";
public string Mensaje { get; set; } ="";
public DateTime? Fecha{get; set;} =null;
public string Propiedad { get; set;} ="";

View File

@@ -6,5 +6,5 @@ public class PrecontratoDto {
public int CantidadGarantes { get; set; }
public int MesesHastaAumento { get; set; }
public bool TieneOpcionVenta { get; set; }
public DateTime fechaprimernotificacion { get; set; }
public string fechaprimernotificacion { get; set; }
}