mirror of https://github.com/Radarr/Radarr
13 lines
365 B
C#
13 lines
365 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);
|
|
List<String> GetUnmappedFolders(string path);
|
|
}
|
|
} |