public async Task Set([Remaining] string content) { _options.Value.Content = content; await _options.StoreAsync(); Response.AddMessage("Content saved"); }
public async Task SetAsync([Remaining] string value) { _options.Value.Content = value; await _options.StoreAsync(); Response.React(Emoji.OkHand); }