IW4M-Admin/SharedLibraryCore/Interfaces/IPluginV2.cs

12 lines
229 B
C#
Raw Normal View History

2023-04-04 19:24:13 -04:00
using Microsoft.Extensions.DependencyInjection;
namespace SharedLibraryCore.Interfaces;
public interface IPluginV2 : IModularAssembly
{
static void RegisterDependencies(IServiceCollection serviceProvider)
{
}
}