From 07a802d8fa93460c9f2a7f42da7a1f14a893a322 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Sun, 3 May 2026 23:33:56 +0200 Subject: Implement search providers --- MediaBrowser.Controller/Library/IInternalSearchProvider.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 MediaBrowser.Controller/Library/IInternalSearchProvider.cs (limited to 'MediaBrowser.Controller/Library/IInternalSearchProvider.cs') diff --git a/MediaBrowser.Controller/Library/IInternalSearchProvider.cs b/MediaBrowser.Controller/Library/IInternalSearchProvider.cs new file mode 100644 index 0000000000..f87931395d --- /dev/null +++ b/MediaBrowser.Controller/Library/IInternalSearchProvider.cs @@ -0,0 +1,8 @@ +namespace MediaBrowser.Controller.Library; + +/// +/// Marker interface for internal search providers that typically query the local database directly. +/// +public interface IInternalSearchProvider : ISearchProvider +{ +} -- cgit v1.2.3