using MediatR;

namespace ChapterX.Application.Collaboration.Commands
{
    public record AddRequest(int UserId, int StoryId, string Role, int? PermissionLevel = null) : IRequest<AddResponse>;
}
