2011-03-09 08:40:48 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-03-10 08:49:59 +01:00
|
|
|
using NzbDrone.Core.Model;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
2010-10-17 19:22:48 +02:00
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
|
|
|
public interface ISyncProvider
|
|
|
|
{
|
2011-03-10 08:49:59 +01:00
|
|
|
bool BeginSyncUnmappedFolders(List<SeriesMappingModel> unmapped);
|
2011-03-28 22:22:12 +02:00
|
|
|
bool BeginAddNewSeries(string dir, int seriesId, string seriesName, int qualityProfileId);
|
|
|
|
bool BeginAddExistingSeries(string path, int seriesId, int qualityProfileId);
|
2011-03-09 08:40:48 +01:00
|
|
|
List<String> GetUnmappedFolders(string path);
|
2010-10-17 19:22:48 +02:00
|
|
|
}
|
|
|
|
}
|