mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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);
 | 
						|
    }
 | 
						|
}
 |