mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 20:54:12 -04:00
* 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
9 lines
168 B
C#
9 lines
168 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IAppUserProgressRepository
|
|
{
|
|
Task<int> CleanupAbandonedChapters();
|
|
}
|
|
} |