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