This commit is contained in:
Shyju Krishnankutty
2026-01-13 19:38:26 -08:00
Unverified
parent aea354b09c
commit 4340f37e97
17 changed files with 587 additions and 134 deletions
@@ -0,0 +1,23 @@
// 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;
}