Sonarr/NzbDrone.Core/Providers/ITvDbProvider.cs

12 lines
309 B
C#
Raw Normal View History

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