aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs
blob: 06372395ec91f946635e062e83e665cf4da25549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;

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(FileSystemMetadata fileInfo, BaseItem parent);
    }
}