mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
9 lines
264 B
C#
9 lines
264 B
C#
namespace API.Interfaces
|
|
{
|
|
public interface ITaskScheduler
|
|
{
|
|
void ScanLibrary(int libraryId, bool forceUpdate = false);
|
|
void CleanupChapters(int[] chapterIds);
|
|
void RefreshMetadata(int libraryId, bool forceUpdate = true);
|
|
}
|
|
} |