using MediatR;

namespace ChapterX.Application.Notification.Commands
{
    public record AddRequest(string Content, string ContentType, int UserId, int? StoryId = null, string? Link = null) : IRequest<AddResponse>;
}
