/// <summary>
        /// Changes the volume in Spotify
        /// </summary>
        private async void ChangeVolume(object obj)
        {
            await _spotifyApi.SetVolumeAsync(Volume);

            await _signalRService.SendVolumeChangedAsync(Volume);
        }