using ChapterX.Domain.Entities; namespace ChapterX.Domain.Repositories { public interface ICollaborationRepository : IRepository { Task DeleteByUserAndStoryAsync(int userId, int storyId, CancellationToken cancellationToken = default); } }