mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
20 lines
591 B
C#
20 lines
591 B
C#
|
|
using MediaBrowser.Controller.Entities;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Controller.Library
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interface ILibrarySearchEngine
|
|||
|
|
/// </summary>
|
|||
|
|
public interface ILibrarySearchEngine
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Sorts the specified items.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="items">The items.</param>
|
|||
|
|
/// <param name="searchTerm">The search term.</param>
|
|||
|
|
/// <returns>IEnumerable{BaseItem}.</returns>
|
|||
|
|
IEnumerable<BaseItem> Search(IEnumerable<BaseItem> items, string searchTerm);
|
|||
|
|
}
|
|||
|
|
}
|