Bulk Import (#55)

Bulk Import
This commit is contained in:
Qstick
2017-08-23 21:39:27 -04:00
committed by GitHub
parent 0da6f6e3c7
commit de5e0871cf
31 changed files with 900 additions and 209 deletions
@@ -0,0 +1,10 @@
using System.Collections.Generic;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.MetadataSource
{
public interface ISearchForNewArtist
{
List<Artist> SearchForNewArtist(string title);
}
}