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