SeemGen/Models/ChatGPTErrorResult.cs

18 lines
374 B
C#

using System.Text.Json.Serialization;
namespace BLAIzor.Models
{
public class ChatGPTErrorResult : ChatGPTResultBase
{
[JsonConstructor]
public ChatGPTErrorResult(string type, string text)
: base(type, text)
{
}
//[JsonPropertyName("buttons")]
//public string[] Buttons { get; set; }
}
}