mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Initial Commit
This commit is contained in:
commit
74ac3bb599
106 changed files with 118079 additions and 0 deletions
11
NzbDrone.Core/Controllers/ITvDbController.cs
Normal file
11
NzbDrone.Core/Controllers/ITvDbController.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
using TvdbLib.Data;
|
||||
|
||||
namespace NzbDrone.Core.Controllers
|
||||
{
|
||||
public interface ITvDbController
|
||||
{
|
||||
List<TvdbSearchResult> SearchSeries(string name);
|
||||
TvdbSeries GetSeries(int id, TvdbLanguage language);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue