made base video resolver available for re-use

This commit is contained in:
LukePulverenti
2013-03-03 11:53:58 -05:00
parent 7b0b5a3538
commit 54a36322bb
28 changed files with 158 additions and 67 deletions

View File

@@ -0,0 +1,12 @@
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 IResolverIgnoreRule
{
bool ShouldIgnore(ItemResolveArgs args);
}
}