mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 02:24:22 +00:00
18 lines
426 B
C#
18 lines
426 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface ISearchProvider
|
|
{
|
|
string Name { get; }
|
|
|
|
Task<List<SearchResult>> GetSearchResultsAsync(SearchQuery searchQuery);
|
|
|
|
Task SaveSearchContent(SearchContent searchContent, Dictionary<string, string> siteSettings);
|
|
|
|
Task DeleteSearchContent(int siteId);
|
|
}
|
|
}
|