mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-04 05:48:29 +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; }
|
|||
|
}
|
|||
|
}
|