module command.remoteundo.command;

interface Command
{
    void execute();
    void undo();
}