1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00
Sonarr/NzbDrone.Core/Providers/ITvDbProvider.cs

12 lines
309 B
C#
Raw Normal View History

2010-09-22 20:19:47 -07:00
using System.Collections.Generic;
using TvdbLib.Data;
namespace NzbDrone.Core.Providers
2010-09-22 20:19:47 -07:00
{
public interface ITvDbProvider
2010-09-22 20:19:47 -07:00
{
2010-09-27 17:27:02 -07:00
IList<TvdbSearchResult> SearchSeries(string name);
TvdbSearchResult GetSeries(string title);
2010-10-04 23:21:18 -07:00
TvdbSeries GetSeries(int id, bool loadEpisodes);
2010-09-22 20:19:47 -07:00
}
}