mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Remove unused files.
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Microsoft.Agents.AI.DurableTask;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a request to run a durable workflow.
|
||||
/// </summary>
|
||||
public sealed class DurableWorkflowRunRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the workflow to execute.
|
||||
/// </summary>
|
||||
[JsonPropertyName("workflowName")]
|
||||
public string WorkflowName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the input for the workflow.
|
||||
/// </summary>
|
||||
[JsonPropertyName("input")]
|
||||
public string Input { get; set; } = string.Empty;
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Microsoft.Agents.AI.DurableTask;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the result of a durable workflow orchestration execution.
|
||||
/// </summary>
|
||||
public sealed class DurableWorkflowRunResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DurableWorkflowRunResult"/> class.
|
||||
/// </summary>
|
||||
/// <param name="workflowName">The name of the workflow that was executed.</param>
|
||||
/// <param name="output">The output from the workflow execution.</param>
|
||||
public DurableWorkflowRunResult(string workflowName, string output)
|
||||
{
|
||||
this.WorkflowName = workflowName;
|
||||
this.Output = output;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name of the workflow that was executed.
|
||||
/// </summary>
|
||||
[JsonPropertyName("workflowName")]
|
||||
public string WorkflowName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the output from the workflow execution.
|
||||
/// </summary>
|
||||
[JsonPropertyName("output")]
|
||||
public string Output { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user