/// <summary>
        /// Skips to the next song
        /// </summary>
        private async void NextSong(object obj)
        {
            IsPlaying = true;
            CurrentlyPlaying newSong = await _spotifyApi.NextSongAsync();

            await _signalRService.SendSongChangedAsync(newSong);
        }