Files
Prowlarr-Prowlarr/NzbDrone.Core/Providers/ISyncProvider.cs
Mark McDowall 2871723bfe Manage multiple Tv Root Folders in Settings/General.
Start of AddExisting.
2011-03-08 23:40:48 -08:00

11 lines
246 B
C#

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