namespace MediaBrowser.Common.Plugins { using Microsoft.Extensions.DependencyInjection; /// /// Defines the . /// public interface IPluginServiceRegistrator { /// /// Registers the plugin's services with the service collection. /// This object is created prior to the plugin creation, so access to other classes is limited. /// /// The service collection. void RegisterServices(IServiceCollection serviceCollection); } }