using Diligent.WebAPI.Host.DTOs.Notification; using MediatR; namespace Diligent.WebAPI.Host.Mediator.Notifications.Commands { public class AddNotificationCommand : IRequest { public NotificationSaveDTO Notification { get; } public AddNotificationCommand(NotificationSaveDTO notification) { Notification = notification; } } }