// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Plugins; using Microsoft.Extensions.DependencyInjection; /// /// Defines the . /// /// /// This interface is only used for service registration and requires a parameterless constructor. /// public interface IPluginServiceRegistrator { /// /// Registers the plugin's services with the service collection. /// /// The service collection. /// The server application host. void RegisterServices(IServiceCollection serviceCollection, IServerApplicationHost applicationHost); }