/// <summary>
        /// Plays/Resumes the paused song
        /// </summary>
        private async void PlaySong(object obj)
        {
            IsPlaying = true;
            await _spotifyApi.ResumeSongAsync();

            await _signalRService.SendResumedAsync();
        }