blob: 2c82882c68708e686ce07426aaf5e36b2ed49624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using CommonIO;
using MediaBrowser.Controller.Entities;
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);
}
}
|