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-15 15:29:14 +00:00
|
|
|
bool BeginAddNewSeries(string dir, int seriesId, string seriesName);
|
2011-03-17 07:40:23 +00:00
|
|
|
bool BeginAddExistingSeries(string path, int seriesId);
|
2011-03-09 07:40:48 +00:00
|
|
|
List<String> GetUnmappedFolders(string path);
|
2010-10-17 17:22:48 +00:00
|
|
|
}
|
|
|
|
}
|