mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
e62cb3b5da
Add [PROPER] to titleFix if it's a proper. User can now change the QualityProfile when adding a series (new or existing), option will default to their DefaultQualityProfile.
14 lines
No EOL
473 B
C#
14 lines
No EOL
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);
|
|
}
|
|
} |