// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Hosting.AzureFunctions;
///
/// Represents configuration options for the HTTP trigger for an agent.
///
///
/// Initializes a new instance of the class.
///
/// Indicates whether the HTTP trigger is enabled for the agent.
public sealed class HttpTriggerOptions(bool isEnabled)
{
///
/// Gets or sets a value indicating whether the HTTP trigger is enabled for the agent.
///
public bool IsEnabled { get; set; } = isEnabled;
}