fully replaced TVDB with Trakt.tv

This commit is contained in:
kay.one 2013-03-31 13:25:39 -07:00
commit a052a9389e
63 changed files with 353 additions and 2529 deletions

View file

@ -0,0 +1,10 @@
using System.Collections.Generic;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.MetadataSource
{
public interface ISearchForNewSeries
{
List<Series> SearchForNewSeries(string title);
}
}