public async Task DeletePlaylist(Core.Playlist playlist) { var youtubeService = await GetService(); var id = GetPlaylistId(playlist); await youtubeService.Playlists.Delete(id).ExecuteAsync(); }
public UrlParseResult(IMapleLog log, Core.Playlist item, ParseResultType type) : this(log, type) { Playlists = new List <Core.Playlist>() { item }; Log(); }