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