Added IDependencyModule to allow plugins to define IoC bindings

This commit is contained in:
Thomas Gillen
2014-02-06 21:18:40 +00:00
parent ca0583bcbe
commit 61c2364de1
4 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
namespace MediaBrowser.Common.Plugins
{
public interface IDependencyModule
{
void BindDependencies(IDependencyContainer container);
}
}