using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Resolvers
{
    /// 
    /// Provides a base "rule" that anyone can use to have paths ignored by the resolver
    /// 
    public interface IResolverIgnoreRule
    {
        /// 
        /// Checks whether or not the file should be ignored.
        /// 
        /// The file information.
        /// The parent BaseItem.
        /// True if the file should be ignored.
        bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
    }
}