jellyfin/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs
2019-01-13 20:25:32 +01:00

15 lines
374 B
C#

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);
}
}