using MediatR;

namespace ChapterX.Application.Collaboration.Commands
{
    public record UpdateRequest(int Id, string Role, int? PermissionLevel = null) : IRequest<UpdateResponse>;
}
