/// <summary>
        /// Goes to the previous song
        /// </summary>
        private async void PreviousSong(object obj)
        {
            IsPlaying = true;
            CurrentlyPlaying newSong = await _spotifyApi.PreviousSongAsync();

            await _signalRService.SendSongChangedAsync(newSong);
        }