Add IServerApplicationHost parameter to IPluginServiceRegistrator

This commit is contained in:
Patrick Barron
2023-11-09 15:09:51 -05:00
parent 2b742be38e
commit 1e1e1560a4
3 changed files with 25 additions and 24 deletions

View File

@@ -1,19 +0,0 @@
namespace MediaBrowser.Common.Plugins
{
using Microsoft.Extensions.DependencyInjection;
/// <summary>
/// Defines the <see cref="IPluginServiceRegistrator" />.
/// </summary>
public interface IPluginServiceRegistrator
{
/// <summary>
/// Registers the plugin's services with the service collection.
/// </summary>
/// <remarks>
/// This interface is only used for service registration and requires a parameterless constructor.
/// </remarks>
/// <param name="serviceCollection">The service collection.</param>
void RegisterServices(IServiceCollection serviceCollection);
}
}