aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Plugins/IDependencyModule.cs
diff options
context:
space:
mode:
authorThomas Gillen <thomas.gillen@googlemail.com>2014-02-06 21:18:40 +0000
committerThomas Gillen <thomas.gillen@googlemail.com>2014-02-06 21:18:40 +0000
commit61c2364de1a90b59cc2696858e946b88efab5c7d (patch)
treed340aa18b5f6b72b2e9a7462e06adfbd479aca30 /MediaBrowser.Common/Plugins/IDependencyModule.cs
parentca0583bcbee3b2a66dfa2a25c63fb62081fe1239 (diff)
Added IDependencyModule to allow plugins to define IoC bindings
Diffstat (limited to 'MediaBrowser.Common/Plugins/IDependencyModule.cs')
-rw-r--r--MediaBrowser.Common/Plugins/IDependencyModule.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Plugins/IDependencyModule.cs b/MediaBrowser.Common/Plugins/IDependencyModule.cs
new file mode 100644
index 000000000..37ebe0d5b
--- /dev/null
+++ b/MediaBrowser.Common/Plugins/IDependencyModule.cs
@@ -0,0 +1,7 @@
+namespace MediaBrowser.Common.Plugins
+{
+ public interface IDependencyModule
+ {
+ void BindDependencies(IDependencyContainer container);
+ }
+} \ No newline at end of file