mirror of
https://github.com/Readarr/Readarr
synced 2026-04-30 16:50:58 +02: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);
|
|
}
|
|
} |