Esempio n. 1
0
        public async Task <LyricsResponse> GetLyrics(string id)
        {
            var results = JsonConvert.DeserializeObject <LyricsResponse>(await NeteaseHttpHelper.GetAsync(string.Format(Endpoints.LyricsURL, id)).ConfigureAwait(false));

            return(results);
        }