// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow executor request external information. /// public sealed class RequestInfoEvent(ExternalRequest request) : WorkflowEvent(request) { /// /// The request to be serviced and data payload associated with it. /// public ExternalRequest Request => request; }