mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 02:55:38 +00:00
273de41d23
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
No EOL
161 B
C#
8 lines
No EOL
161 B
C#
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISyncProvider
|
|
{
|
|
void SyncUnmappedFolders();
|
|
void BeginSyncUnmappedFolders();
|
|
}
|
|
} |