mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
added cast icon to now playing bar to send current media to another client
This commit is contained in:
20
MediaBrowser.Controller/Library/ISearchEngine.cs
Normal file
20
MediaBrowser.Controller/Library/ISearchEngine.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using MediaBrowser.Controller.Entities;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MediaBrowser.Controller.Library
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface ILibrarySearchEngine
|
||||
/// </summary>
|
||||
public interface ISearchEngine
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the search hints.
|
||||
/// </summary>
|
||||
/// <param name="inputItems">The input items.</param>
|
||||
/// <param name="searchTerm">The search term.</param>
|
||||
/// <returns>Task{IEnumerable{SearchHintInfo}}.</returns>
|
||||
Task<IEnumerable<SearchHintInfo>> GetSearchHints(IEnumerable<BaseItem> inputItems, string searchTerm);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user