mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
14 lines
370 B
C#
14 lines
370 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);
|
||
|
}
|
||
|
}
|