10 lines
234 B
C#
10 lines
234 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace MycroForge.Core.Contract;
|
|
|
|
public interface ICommandPlugin
|
|
{
|
|
public string? Name { get; }
|
|
|
|
public void RegisterServices(IServiceCollection services);
|
|
} |