1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Providers/ITvDbProvider.cs

12 lines
312 B
C#

using System.Collections.Generic;
using TvdbLib.Data;
namespace NzbDrone.Core.Providers
{
public interface ITvDbProvider
{
IList<TvdbSearchResult> SearchSeries(string name);
TvdbSeries GetSeries(int id, TvdbLanguage language);
TvdbSearchResult GetSeries(string title);
}
}