aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IInternalSearchProvider.cs
blob: f87931395daaedf795ca80e449ff90f4179c8e44 (plain)
1
2
3
4
5
6
7
8
namespace MediaBrowser.Controller.Library;

/// <summary>
/// Marker interface for internal search providers that typically query the local database directly.
/// </summary>
public interface IInternalSearchProvider : ISearchProvider
{
}