public CommandReference(Type commandType, InteractiveCommandDescAttribute description)
 {
     CommandType = commandType;
     Description = description;
 }
 public static void PrintHelp(InteractiveCommandDescAttribute commandDescription)
 {
     Lumberjack.Info(commandDescription.Usage);
     Lumberjack.Log($"\t{commandDescription.QuickHelp}");
 }