// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Hosting.AzureFunctions.Workflows; /// /// Provides configuration options for enabling and customizing function triggers for a workflow. /// public sealed class FunctionsWorkflowOptions { /// /// Gets or sets the options used to configure the MCP tool trigger behavior. /// /// /// By default, MCP tool trigger is disabled for workflows. /// public McpToolTriggerOptions McpToolTrigger { get; set; } = new(false); }