keeweb/helper/win32/src/KeeWebHelper/InputCommands/UnknownCommand.cs

20 lines
372 B
C#
Executable File

using System;
namespace KeeWebHelper.InputCommands
{
class UnknownCommand : InputCommandBase
{
public string Name { get; set; }
public UnknownCommand(string name)
{
Name = name;
}
public override void Execute()
{
Console.Error.WriteLine("Unknown command: {0}", Name);
}
}
}