Files
agent-framework/dotnet/samples/HelloHttpApi/HelloHttpApi.ApiService/InvocationResponse.cs
T
Reuben Bond 41d441420e Initial draft of actor runtime abstractions (#197)
* Initial draft of actor runtime abstractions
2025-07-22 16:05:58 -04:00

16 lines
356 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.Text.Json;
using System.Text.Json.Serialization;
namespace HelloHttpApi.ApiService;
public class InvocationResponse
{
[JsonPropertyName("response")]
public JsonElement Response { get; set; }
[JsonPropertyName("status")]
public string? Status { get; set; } = "success";
}