mhf-server/Mhf.Cli/Command/IConsoleCommand.cs

13 lines
266 B
C#
Raw Permalink Normal View History

2019-11-24 19:43:35 +08:00
using Mhf.Cli.Argument;
namespace Mhf.Cli.Command
{
public interface IConsoleCommand
{
CommandResultType Handle(ConsoleParameter parameter);
void Shutdown();
string Key { get; }
string Description { get; }
}
}