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