mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-08 08:48:48 +01:00
9 lines
237 B
C#
9 lines
237 B
C#
namespace MediaBrowser.Controller.Library;
|
|
|
|
/// <summary>
|
|
/// Marker interface for internal search providers that typically query the local database directly.
|
|
/// </summary>
|
|
public interface IInternalSearchProvider : ISearchProvider
|
|
{
|
|
}
|