Updated the code to allow a search to be made from UI to iTunes and return a mock result.

This commit is contained in:
Joseph Milazzo
2017-04-28 17:05:35 -05:00
parent 684e4f4c80
commit 2813fccc78
32 changed files with 1401 additions and 65 deletions
@@ -1,10 +1,12 @@
using System.Collections.Generic;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.MetadataSource
{
public interface ISearchForNewSeries
{
List<Series> SearchForNewSeries(string title);
List<Artist> SearchForNewArtist(string title);
}
}