mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Add GPL modules
This commit is contained in:
18
MediaBrowser.Controller/Library/ISearchEngine.cs
Normal file
18
MediaBrowser.Controller/Library/ISearchEngine.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using MediaBrowser.Model.Querying;
|
||||
using MediaBrowser.Model.Search;
|
||||
|
||||
namespace MediaBrowser.Controller.Library
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface ILibrarySearchEngine
|
||||
/// </summary>
|
||||
public interface ISearchEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the search hints.
|
||||
/// </summary>
|
||||
/// <param name="query">The query.</param>
|
||||
/// <returns>Task{IEnumerable{SearchHintInfo}}.</returns>
|
||||
QueryResult<SearchHintInfo> GetSearchHints(SearchQuery query);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user