mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-03-31 18:38:22 +00:00
20 lines
477 B
C#
20 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Esiur.Schema.Llm
|
|
{
|
|
public sealed class LlmEventModel
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = "";
|
|
|
|
[JsonPropertyName("parameters")]
|
|
public List<LlmParameterModel> Parameters { get; set; } = new();
|
|
|
|
[JsonPropertyName("annotation")]
|
|
public string? Annotation { get; set; }
|
|
}
|
|
}
|