diff --git a/dotnet/src/Microsoft.Agents.AI.DurableTask/DurableWorkflowRunRequest.cs b/dotnet/src/Microsoft.Agents.AI.DurableTask/DurableWorkflowRunRequest.cs
deleted file mode 100644
index 037ea8291c..0000000000
--- a/dotnet/src/Microsoft.Agents.AI.DurableTask/DurableWorkflowRunRequest.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) Microsoft. All rights reserved.
-
-using System.Text.Json.Serialization;
-
-namespace Microsoft.Agents.AI.DurableTask;
-
-///
-/// Represents a request to run a durable workflow.
-///
-public sealed class DurableWorkflowRunRequest
-{
- ///
- /// Gets or sets the name of the workflow to execute.
- ///
- [JsonPropertyName("workflowName")]
- public string WorkflowName { get; set; } = string.Empty;
-
- ///
- /// Gets or sets the input for the workflow.
- ///
- [JsonPropertyName("input")]
- public string Input { get; set; } = string.Empty;
-}
diff --git a/dotnet/src/Microsoft.Agents.AI.DurableTask/DurableWorkflowRunResult.cs b/dotnet/src/Microsoft.Agents.AI.DurableTask/DurableWorkflowRunResult.cs
deleted file mode 100644
index 77d7bdcce9..0000000000
--- a/dotnet/src/Microsoft.Agents.AI.DurableTask/DurableWorkflowRunResult.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) Microsoft. All rights reserved.
-
-using System.Text.Json.Serialization;
-
-namespace Microsoft.Agents.AI.DurableTask;
-
-///
-/// Represents the result of a durable workflow orchestration execution.
-///
-public sealed class DurableWorkflowRunResult
-{
- ///
- /// Initializes a new instance of the class.
- ///
- /// The name of the workflow that was executed.
- /// The output from the workflow execution.
- public DurableWorkflowRunResult(string workflowName, string output)
- {
- this.WorkflowName = workflowName;
- this.Output = output;
- }
-
- ///
- /// Gets the name of the workflow that was executed.
- ///
- [JsonPropertyName("workflowName")]
- public string WorkflowName { get; }
-
- ///
- /// Gets the output from the workflow execution.
- ///
- [JsonPropertyName("output")]
- public string Output { get; }
-}