mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-20 03:24:24 +00:00
15 lines
301 B
C#
15 lines
301 B
C#
using System;
|
|
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface ISearchResultManager
|
|
{
|
|
string Name { get; }
|
|
|
|
bool Visible(SearchContent searchResult, SearchQuery searchQuery);
|
|
|
|
string GetUrl(SearchResult searchResult, SearchQuery searchQuery);
|
|
}
|
|
}
|