12 lines
229 B
C#
12 lines
229 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace SharedLibraryCore.Interfaces;
|
|
|
|
|
|
public interface IPluginV2 : IModularAssembly
|
|
{
|
|
static void RegisterDependencies(IServiceCollection serviceProvider)
|
|
{
|
|
}
|
|
}
|