jellyfin/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs

14 lines
370 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using MediaBrowser.Controller.Entities;
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);
}
}