mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
wip
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user