Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AddNotificationCommand.cs 392B

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