diff options
Diffstat (limited to 'MediaBrowser.Controller/Library/IResolverIgnoreRule.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IResolverIgnoreRule.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IResolverIgnoreRule.cs b/MediaBrowser.Controller/Library/IResolverIgnoreRule.cs new file mode 100644 index 000000000..c9c602089 --- /dev/null +++ b/MediaBrowser.Controller/Library/IResolverIgnoreRule.cs @@ -0,0 +1,10 @@ +namespace MediaBrowser.Controller.Library +{ + /// <summary> + /// Provides a base "rule" that anyone can use to have paths ignored by the resolver + /// </summary> + public interface IResolverIgnoreRule + { + bool ShouldIgnore(ItemResolveArgs args); + } +} |
