mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
10 lines
328 B
C#
10 lines
328 B
C#
using System.Threading.Tasks;
|
|
using RestEase;
|
|
|
|
namespace Orchard.MediaLibrary.WebSearch.Controllers.Api {
|
|
[Header("User-Agent", "RestEase")]
|
|
public interface IBingApi {
|
|
[Get("bing/v7.0/images/search")]
|
|
Task<string> GetImagesAsync([Header("Ocp-Apim-Subscription-Key")] string apiKey, string q);
|
|
}
|
|
} |