Exemplo n.º 1
0
            public async Task CreatePlaylist([Summary("Name of the new playlist.")] string name)
            {
                if (string.IsNullOrEmpty(name))
                {
                    await ReplyAsync("Please provide a playlist name.");

                    return;
                }

                await _service.CreateRadioPlaylist(Context.Message.Author, name);
            }