jellyfin/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs

16 lines
408 B
C#
Raw Normal View History

2017-05-25 23:48:54 -07:00

using MediaBrowser.Controller.Entities;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Resolvers
2013-02-20 18:33:05 -07:00
{
/// <summary>
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
/// </summary>
public interface IResolverIgnoreRule
2013-02-20 18:33:05 -07:00
{
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
2013-02-20 18:33:05 -07:00
}
}