mirror of
https://github.com/sphildreth/roadie
synced 2024-11-27 06:30:21 +00:00
12 lines
322 B
C#
12 lines
322 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Roadie.Library.SearchEngines.MetaData
|
|||
|
{
|
|||
|
public interface ILabelSearchEngine
|
|||
|
{
|
|||
|
bool IsEnabled { get; }
|
|||
|
|
|||
|
Task<OperationResult<IEnumerable<LabelSearchResult>>> PerformLabelSearch(string labelName, int resultsCount);
|
|||
|
}
|
|||
|
}
|