// Copyright (c) Microsoft. All rights reserved. using Microsoft.Extensions.Hosting; namespace Microsoft.Agents.AI.Hosting; /// /// Represents a builder for configuring workflows within a hosting environment. /// public interface IHostedWorkflowBuilder { /// /// Gets the name of the workflow being configured. /// string Name { get; } /// /// Gets the application host builder for configuring additional services. /// IHostApplicationBuilder HostApplicationBuilder { get; } }