mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-04 05:48:29 +08:00
24 lines
544 B
C#
24 lines
544 B
C#
![]() |
using Arrowgene.Services.Logging;
|
|||
|
using Mhf.Cli.Argument;
|
|||
|
|
|||
|
namespace Mhf.Cli.Command
|
|||
|
{
|
|||
|
public abstract class ConsoleCommand : IConsoleCommand
|
|||
|
{
|
|||
|
protected ConsoleCommand()
|
|||
|
{
|
|||
|
Logger = LogProvider.Logger(this);
|
|||
|
}
|
|||
|
|
|||
|
protected readonly ILogger Logger;
|
|||
|
|
|||
|
public abstract string Key { get; }
|
|||
|
public abstract string Description { get; }
|
|||
|
public abstract CommandResultType Handle(ConsoleParameter parameter);
|
|||
|
|
|||
|
public virtual void Shutdown()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|