public TrackResponse GetLibraryTrack(Track track, bool isUserOnly)
        {
            string userName = null;

            if (isUserOnly)
            {
                userName = Authentication.Session.Username;
            }

            var result = LibraryApi.GetTracks(track, Authentication, userName);

            return(result);
        }