mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
9 lines
246 B
C#
9 lines
246 B
C#
namespace API.Interfaces
|
|
{
|
|
public interface ITaskScheduler
|
|
{
|
|
void ScanLibrary(int libraryId, bool forceUpdate = false);
|
|
void CleanupVolumes(int[] volumeIds);
|
|
void ScanSeries(int libraryId, int seriesId);
|
|
}
|
|
} |