avance: estado pre implementacion de notificaciones

This commit is contained in:
2025-01-06 21:22:58 -03:00
parent 5b3e65db2f
commit ed0d83dafe
14 changed files with 294 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Entidades.Dto;
public class AltaNotificacionDto {
public string Remitente { get; set; } ="";
public string Accion { get; set; } ="";
public string Mensaje { get; set; } ="";
public int Propiedad { get; set;}
}
+8
View File
@@ -0,0 +1,8 @@
namespace Entidades.Dto;
public class NotificacionDto {
public string Remitente { get; set; } ="";
public string Accion { get; set; } ="";
public string Mensaje { get; set; } ="";
public DateTime? Fecha{get; set;} =null;
public string Propiedad { get; set;} ="";
}
@@ -0,0 +1 @@
public record NotificacionMarcarLeidoDto(DateTime? Fecha, string Email);