2011-03-09 07:40:48 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2010-10-17 17:22:48 +00:00
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
|
|
|
public interface ISyncProvider
|
|
|
|
{
|
2011-03-09 07:40:48 +00:00
|
|
|
bool BeginSyncUnmappedFolders(List<string> paths);
|
|
|
|
List<String> GetUnmappedFolders(string path);
|
2010-10-17 17:22:48 +00:00
|
|
|
}
|
|
|
|
}
|