Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

GetNotificationsQuery.cs 360B

123456789101112131415
  1. using Diligent.WebAPI.Host.DTOs.Notification;
  2. using MediatR;
  3. namespace Diligent.WebAPI.Host.Mediator.Notifications.Queries
  4. {
  5. public class GetNotificationsQuery : IRequest<List<NotificationReadDTO>>
  6. {
  7. public string UserId { get; }
  8. public GetNotificationsQuery(string userId)
  9. {
  10. UserId = userId;
  11. }
  12. }
  13. }