using System; using System.Collections.Generic; namespace NzbDrone.Core.Providers { public interface ISyncProvider { bool BeginSyncUnmappedFolders(List paths); List GetUnmappedFolders(string path); } }