private async Task GetListPlugins()
        {
            var result = await _sshService.GetPlugins();

            if (result != null)
            {
                Plugins.ReplaceRange(result);
            }
        }