Exemplo n.º 1
0
            public async Task Set([Remaining] string content)
            {
                _options.Value.Content = content;
                await _options.StoreAsync();

                Response.AddMessage("Content saved");
            }
Exemplo n.º 2
0
        public async Task SetAsync([Remaining] string value)
        {
            _options.Value.Content = value;
            await _options.StoreAsync();

            Response.React(Emoji.OkHand);
        }