// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.DurableTask.Workflows; /// /// Represents a RequestPort the workflow is paused at, waiting for a response. /// /// The RequestPort ID identifying which input is needed. /// The serialized request data passed to the RequestPort. internal sealed record PendingRequestPortStatus( string EventName, string Input);