mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 21:39:34 +02:00

Added udp logging Added SyncProvider to provide async long running tasks Refactored SyncSeries to SyncProvider Episode Info is now fetched automatically Optimized RefreshEpisodeInfo for better performance
8 lines
161 B
C#
8 lines
161 B
C#
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISyncProvider
|
|
{
|
|
void SyncUnmappedFolders();
|
|
void BeginSyncUnmappedFolders();
|
|
}
|
|
} |