aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Resolvers/IResolutionIgnoreRule.cs
blob: 661688f3c73c024ab3f96d8d01d7295466ad2d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
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 IResolutionIgnoreRule
    {
        bool ShouldIgnore(ItemResolveArgs args);
    }
}