mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
13 lines
266 B
C#
13 lines
266 B
C#
using Mhf.Cli.Argument;
|
|
|
|
namespace Mhf.Cli.Command
|
|
{
|
|
public interface IConsoleCommand
|
|
{
|
|
CommandResultType Handle(ConsoleParameter parameter);
|
|
void Shutdown();
|
|
string Key { get; }
|
|
string Description { get; }
|
|
}
|
|
}
|