mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
24 lines
665 B
C#
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;
|
|
}
|