aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IResolverIgnoreRule.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-03 01:58:04 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-03 01:58:04 -0500
commitac3a94f5a1dbb94b374e0160c344fcf99af9b696 (patch)
treef8b109c3bb5ebce964363e9df874bf3235259616 /MediaBrowser.Controller/Library/IResolverIgnoreRule.cs
parent627b8370a89cbf9826898c2edfc46767dfb5272a (diff)
moved resolvers to implementations, trimmed nuget package a bit
Diffstat (limited to 'MediaBrowser.Controller/Library/IResolverIgnoreRule.cs')
-rw-r--r--MediaBrowser.Controller/Library/IResolverIgnoreRule.cs10
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);
+ }
+}