source: ChapterX.Domain/Repositories/ICollaborationRepository.cs@ d300631

main
Last change on this file since d300631 was 7fbb91c, checked in by kikisrbinoska <srbinoskakristina07@…>, 3 months ago

Added functional collaboration between users

  • Property mode set to 100644
File size: 281 bytes
Line 
1using ChapterX.Domain.Entities;
2
3namespace ChapterX.Domain.Repositories
4{
5 public interface ICollaborationRepository : IRepository<Collaboration>
6 {
7 Task<bool> DeleteByUserAndStoryAsync(int userId, int storyId, CancellationToken cancellationToken = default);
8 }
9}
Note: See TracBrowser for help on using the repository browser.