Files
autogen/sk-azfunc-server/Models/ExecuteFunctionResponse.cs
2023-06-01 10:58:29 -07:00

12 lines
312 B
C#

using System.Text.Json.Serialization;
using Microsoft.Azure.WebJobs.Extensions.OpenApi.Core.Attributes;
namespace Models;
internal class ExecuteFunctionResponse
{
[JsonPropertyName("response")]
[OpenApiProperty(Description = "The response from the AI.")]
public string? Response { get; set; }
}