mirror of
https://github.com/sphildreth/roadie
synced 2025-02-18 05:58:26 +00:00
15 lines
No EOL
389 B
C#
15 lines
No EOL
389 B
C#
using RestSharp;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Library.SearchEngines.Imaging
|
|
{
|
|
public interface IImageSearchEngine
|
|
{
|
|
bool IsEnabled { get; }
|
|
|
|
RestRequest BuildRequest(string query, int resultsCount);
|
|
|
|
Task<IEnumerable<ImageSearchResult>> PerformImageSearchAsync(string query, int resultsCount);
|
|
}
|
|
} |