using Diligent.WebAPI.Host.DTOs.Notification; using MediatR; namespace Diligent.WebAPI.Host.Mediator.Notifications.Queries { public class GetNotificationsQuery : IRequest> { public string UserId { get; } public GetNotificationsQuery(string userId) { UserId = userId; } } }