Ви не можете вибрати більше 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;
- }
- }
- }
|