1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Core/Providers/ITvDbProvider.cs

12 lines
309 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);
TvdbSearchResult GetSeries(string title);
2010-10-05 08:21:18 +02:00
TvdbSeries GetSeries(int id, bool loadEpisodes);
2010-09-23 05:19:47 +02:00
}
}