mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-12 22:12:38 +01:00
460e48d6a1
Default value for Quality Dropbox in AddExisting is now the default value from Settings.
13 lines
394 B
C#
13 lines
394 B
C#
using System.Collections.Generic;
|
|
using TvdbLib.Data;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ITvDbProvider
|
|
{
|
|
IList<TvdbSearchResult> SearchSeries(string name);
|
|
int GetBestMatch(List<TvdbSearchResult> searchResults, string searchString);
|
|
TvdbSearchResult GetSeries(string title);
|
|
TvdbSeries GetSeries(int id, bool loadEpisodes);
|
|
}
|
|
} |