protected override async Task <int> OnExecuteTorrentSpecificAsync(QBittorrentClient client, CommandLineApplication app, IConsole console)
                {
                    var result = await client.AddTorrentPeersAsync(Hash, Peers);

                    if (Verbose)
                    {
                        console.WriteLineColored($"Successfully added {result.Added} peer(s).", ColorScheme.Current.Normal);
                    }

                    if (result.Failed > 0)
                    {
                        console.WriteLineColored($"Failed to add {result.Failed} peer(s).", ColorScheme.Current.Warning);
                    }

                    return(ExitCodes.Success);
                }