Api/Brizco.Domain/CommandQueries/Queries/NotificationQueries.cs

5 lines
209 B
C#

using Brizco.Domain.MartenEntities.Notifications;
namespace Brizco.Domain.CommandQueries.Queries;
public record GetNotificationsQuery(int Page,int Count, Guid? UserId=null) : IRequest<List<Notification>>;