diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-02-11 23:29:14 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-02-11 23:29:14 -0500 |
| commit | c5f29c67ea5f1b06c5f23b7c88760c7a181661d4 (patch) | |
| tree | ab805edc544774f52194b605c17f1b5f158af30a /MediaBrowser.Common/Plugins/IDependencyModule.cs | |
| parent | 1ff62edd845e0ff2da2150307b4addb13794bd16 (diff) | |
| parent | 61c2364de1a90b59cc2696858e946b88efab5c7d (diff) | |
Merge pull request #706 from thogil/dependency_modules
Added IDependencyModule to allow plugins to define IoC bindings
Diffstat (limited to 'MediaBrowser.Common/Plugins/IDependencyModule.cs')
| -rw-r--r-- | MediaBrowser.Common/Plugins/IDependencyModule.cs | 7 |
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 |
