Kavita/API/Interfaces/IAppUserProgressRepository.cs
Joseph Milazzo 2b99c8abfa
Scan Bugfixes (#177)
* Added way  more logging for debugging issue #163.

Fixed #175

* Removed some comment that isn't needed

* Fixed a enumeration issue due to removing while enumerating
2021-04-16 12:21:16 -05:00

9 lines
168 B
C#

using System.Threading.Tasks;
namespace API.Interfaces
{
public interface IAppUserProgressRepository
{
Task<int> CleanupAbandonedChapters();
}
}