mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 20:53:12 +00:00
12 lines
343 B
C#
12 lines
343 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);
|
|||
|
}
|
|||
|
}
|