You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DeleteNotificationCommand.cs 418B

123456789101112131415
  1. using Diligent.WebAPI.Host.DTOs.Notification;
  2. using MediatR;
  3. namespace Diligent.WebAPI.Host.Mediator.Notifications.Commands
  4. {
  5. public class DeleteNotificationCommand : IRequest<Unit>
  6. {
  7. public NotificationDeleteDTO NotificationData { get; }
  8. public DeleteNotificationCommand(NotificationDeleteDTO notificationData)
  9. {
  10. NotificationData = notificationData;
  11. }
  12. }
  13. }