jellyfin/MediaBrowser.Controller/Resolvers/IResolutionIgnoreRule.cs

13 lines
321 B
C#
Raw Normal View History

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