aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Plugins/IDependencyModule.cs
blob: 37ebe0d5b26f3594af2f50af5e804432b48beb26 (plain)
1
2
3
4
5
6
7
namespace MediaBrowser.Common.Plugins
{
    public interface IDependencyModule
    {
        void BindDependencies(IDependencyContainer container);
    }
}