You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/NzbDrone.Core/Providers/ITvDbProvider.cs

11 lines
262 B

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