Files
WebNovelPortal/DBConnection/Repositories/Interfaces/IUserRepository.cs
littlefoot ceb8a0db8e
All checks were successful
continuous-integration/drone/push Build is passing
Refactor and novel18 support (added cookie support in general to AbstractScraper.cs
2022-07-20 22:04:13 -04:00

9 lines
281 B
C#

using Common.Models.DBDomain;
namespace DBConnection.Repositories.Interfaces;
public interface IUserRepository : IRepository<User>
{
Task<User> AssignNovelsToUser(User user, List<Novel> novels);
Task<User> UpdateLastChapterRead(User user, Novel novel, int chapterRead);
}