public void Register(CommandLineApplication app)
 {
     app.Description = "Logout the authorised user";
     app.HelpOption("-?|-h|--help");
     app.OnExecute(() =>
     {
         _client.Logout();
         return(0);
     });
 }