mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 04:52:21 -07:00
11 lines
No EOL
266 B
C#
11 lines
No EOL
266 B
C#
using System.Collections.Generic;
|
|
using TvdbLib.Data;
|
|
|
|
namespace NzbDrone.Core.Controllers
|
|
{
|
|
public interface ITvDbController
|
|
{
|
|
IList<TvdbSearchResult> SearchSeries(string name);
|
|
TvdbSeries GetSeries(int id, TvdbLanguage language);
|
|
}
|
|
} |