mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
12 lines
No EOL
321 B
C#
12 lines
No EOL
321 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Library.SearchEngines.MetaData
|
|
{
|
|
public interface IArtistSearchEngine
|
|
{
|
|
bool IsEnabled { get; }
|
|
|
|
Task<OperationResult<IEnumerable<ArtistSearchResult>>> PerformArtistSearch(string query, int resultsCount);
|
|
}
|
|
} |