mirror of https://github.com/lidarr/Lidarr
14 lines
473 B
C#
14 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISyncProvider
|
|
{
|
|
bool BeginSyncUnmappedFolders(List<SeriesMappingModel> unmapped);
|
|
bool BeginAddNewSeries(string dir, int seriesId, string seriesName, int qualityProfileId);
|
|
bool BeginAddExistingSeries(string path, int seriesId, int qualityProfileId);
|
|
List<String> GetUnmappedFolders(string path);
|
|
}
|
|
} |