Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 123456789101112131415 |
- using Diligent.WebAPI.Host.DTOs.Notification;
- using MediatR;
-
- namespace Diligent.WebAPI.Host.Mediator.Notifications.Commands
- {
- public class AddNotificationCommand : IRequest<Unit>
- {
- public NotificationSaveDTO Notification { get; }
-
- public AddNotificationCommand(NotificationSaveDTO notification)
- {
- Notification = notification;
- }
- }
- }
|