mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 16:02:29 +01: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
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);
|
|
}
|
|
} |