11 lines
265 B
C#
11 lines
265 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BotSharp.Plugin.FileHandler.LlmContexts;
|
|
|
|
public class LlmContextOut
|
|
{
|
|
[JsonPropertyName("selected_id")]
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
public int? Selected { get; set; }
|
|
}
|