mirror of
https://github.com/Readarr/Readarr
synced 2025-12-24 09:12:51 +01:00
14 lines
No EOL
429 B
C#
14 lines
No EOL
429 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);
|
|
bool BeginAddExistingSeries(string path, int seriesId);
|
|
List<String> GetUnmappedFolders(string path);
|
|
}
|
|
} |