mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
12 lines
309 B
C#
12 lines
309 B
C#
using System.Collections.Generic;
|
|
using TvdbLib.Data;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ITvDbProvider
|
|
{
|
|
IList<TvdbSearchResult> SearchSeries(string name);
|
|
TvdbSearchResult GetSeries(string title);
|
|
TvdbSeries GetSeries(int id, bool loadEpisodes);
|
|
}
|
|
} |