source: ChapterX.Domain/Repositories/ICollaborationRepository.cs@ 99c1e45

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

Added functional collaboration between users

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