public CommandAttribute(string command, int expectedArgCount, EngineToAppCommand expectedResponse, bool exactMatch) : this(command, expectedArgCount, expectedResponse) { ExactMatch = exactMatch; }
public CommandAttribute(string command, int expectedArgCount, EngineToAppCommand expectedResponse) : this(command, expectedArgCount) { ExpectedResponseObj = expectedResponse; }