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