mhf-server/Mhf.Cli/Command/IConsoleCommand.cs
2019-11-24 19:43:35 +08:00

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; }
}
}