/// <summary> /// Get a list of new releases /// </summary> /// <returns></returns> public async Task <Page <Album> > GetNewReleases(AuthenticationToken token, string country = "", int limit = 20, int offset = 0) { return(await Browse.GetNewReleases(token, country, limit, offset)); }
/// <summary> /// Get a list of featured playlists /// </summary> /// <param name="token"></param> /// <param name="locale"></param> /// <param name="country"></param> /// <param name="timestamp">A timestamp in ISO 8601 format: yyyy-MM-ddTHH:mm:ss.</param> /// <param name="limit"></param> /// <param name="offset"></param> /// <returns></returns> public async static Task <Page <Playlist> > GetFeaturedPlaylists(AuthenticationToken token, string locale = "", string country = "", string timestamp = "", int limit = 20, int offset = 0) { return(await Browse.GetFeaturedPlaylists(token, locale, country, timestamp, limit, offset)); }