mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-04 01:42:39 +01:00
12 lines
321 B
C#
12 lines
321 B
C#
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 IResolutionIgnoreRule
|
|
{
|
|
bool ShouldIgnore(ItemResolveArgs args);
|
|
}
|
|
}
|