Files
agent-framework/dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/DuableWorkflowRunRequest.cs
T
Shyju Krishnankutty 4340f37e97 wip
2026-01-13 19:38:26 -08:00

24 lines
665 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.Text.Json.Serialization;
namespace Microsoft.Agents.AI.Hosting.AzureFunctions;
/// <summary>
/// Represents a request to run a workflow in the Duable system.
/// </summary>
public sealed class DuableWorkflowRunRequest
{
/// <summary>
/// Gets or sets the name of the workflow.
/// </summary>
[JsonPropertyName("workflowName")]
public string WorkflowName { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the input string to be processed or analyzed.
/// </summary>
[JsonPropertyName("input")]
public string Input { get; set; } = string.Empty;
}