using Diligent.WebAPI.Host.DTOs.Notification; using MediatR; namespace Diligent.WebAPI.Host.Mediator.Notifications.Commands { public class DeleteNotificationCommand : IRequest { public NotificationDeleteDTO NotificationData { get; } public DeleteNotificationCommand(NotificationDeleteDTO notificationData) { NotificationData = notificationData; } } }