mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
made base video resolver available for re-use
This commit is contained in:
12
MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs
Normal file
12
MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using MediaBrowser.Controller.Library;
|
||||
|
||||
namespace MediaBrowser.Controller.Resolvers
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
|
||||
/// </summary>
|
||||
public interface IResolverIgnoreRule
|
||||
{
|
||||
bool ShouldIgnore(ItemResolveArgs args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user