using System.Threading.Tasks; using API.Entities.Enums; namespace API.Interfaces { public interface IAppUserProgressRepository { Task CleanupAbandonedChapters(); Task UserHasProgress(LibraryType libraryType, int userId); } }