BotSharp/src/Plugins/BotSharp.Plugin.ChartHandler/LlmContext/LlmContextOut.cs

15 lines
421 B
C#
Raw Normal View History

2025-07-01 20:47:18 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.ChartHandler.LlmContext;
public class LlmContextOut
{
[JsonPropertyName("greeting_message")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? GreetingMessage { get; set; }
[JsonPropertyName("js_code")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? JsCode { get; set; }
}