diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-03 23:53:49 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-03 23:53:49 -0500 |
| commit | f1a48321755b8015aa121a64afd48818dfcf53ce (patch) | |
| tree | 333fe77f5153b07eb965d7936d88039c7c423811 /MediaBrowser.Controller/Library/ISearchEngine.cs | |
| parent | f93fb4650c2e79655222be6f3e81d360c75c8532 (diff) | |
added cast icon to now playing bar to send current media to another client
Diffstat (limited to 'MediaBrowser.Controller/Library/ISearchEngine.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ISearchEngine.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ISearchEngine.cs b/MediaBrowser.Controller/Library/ISearchEngine.cs new file mode 100644 index 000000000..807d21302 --- /dev/null +++ b/MediaBrowser.Controller/Library/ISearchEngine.cs @@ -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); + } +} |
