1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Core/Providers/ITvDbProvider.cs

11 lines
262 B
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
using System.Collections.Generic;
using TvdbLib.Data;
namespace NzbDrone.Core.Providers
2010-09-23 05:19:47 +02:00
{
public interface ITvDbProvider
2010-09-23 05:19:47 +02:00
{
2010-09-28 02:27:02 +02:00
IList<TvdbSearchResult> SearchSeries(string name);
2010-09-23 05:19:47 +02:00
TvdbSeries GetSeries(int id, TvdbLanguage language);
}
}