avance: estado pre implementacion de notificaciones
This commit is contained in:
@@ -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;}
|
||||
}
|
||||
@@ -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);
|
||||
Reference in New Issue
Block a user