jellyfin/MediaBrowser.Controller/Library/IResolverIgnoreRule.cs

11 lines
277 B
C#
Raw Normal View History

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