using System; using System.Collections.Generic; using NzbDrone.Core.Model; namespace NzbDrone.Core.Providers { public interface ISyncProvider { bool BeginSyncUnmappedFolders(List unmapped); bool BeginAddNewSeries(string dir, int seriesId, string seriesName, int qualityProfileId); bool BeginAddExistingSeries(string path, int seriesId, int qualityProfileId); List GetUnmappedFolders(string path); } }