Remove unused files.

This commit is contained in:
Shyju Krishnankutty
2026-01-22 09:16:11 -08:00
Unverified
parent 63a2283033
commit eec89baaec
2 changed files with 0 additions and 57 deletions
@@ -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; }
}