using System.Collections.Generic; using NzbDrone.Core.Music; namespace NzbDrone.Core.MetadataSource { public interface ISearchForNewArtist { List SearchForNewArtist(string title); } }