jellyfin/MediaBrowser.Controller/Resolvers/IResolverIgnoreRule.cs

13 lines
319 B
C#
Raw Normal View History

using MediaBrowser.Controller.Library;
namespace MediaBrowser.Controller.Resolvers
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
/// </summary>
public interface IResolverIgnoreRule
2013-02-21 02:33:05 +01:00
{
bool ShouldIgnore(ItemResolveArgs args);
2013-02-21 02:33:05 +01:00
}
}