moved resolvers to implementations, trimmed nuget package a bit

This commit is contained in:
LukePulverenti
2013-03-03 01:58:04 -05:00
parent 627b8370a8
commit ac3a94f5a1
35 changed files with 543 additions and 518 deletions

View File

@@ -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);
}
}