namespace MediaBrowser.Common.Plugins
{
    using Microsoft.Extensions.DependencyInjection;
    /// 
    /// Defines the .
    /// 
    public interface IPluginServiceRegistrator
    {
        /// 
        /// Registers the plugin's services with the service collection.
        /// 
        /// 
        /// This interface is only used for service registration and requires a parameterless constructor.
        /// 
        /// The service collection.
        void RegisterServices(IServiceCollection serviceCollection);
    }
}