aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IResolverIgnoreRule.cs
blob: c9c60208946d76a253b823cb67dde7d9d9277754 (plain)
1
2
3
4
5
6
7
8
9
10
namespace MediaBrowser.Controller.Library
{
    /// <summary>
    /// Provides a base "rule" that anyone can use to have paths ignored by the resolver
    /// </summary>
    public interface IResolverIgnoreRule
    {
        bool ShouldIgnore(ItemResolveArgs args);
    }
}