mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-03-31 10:28:21 +00:00
13 lines
247 B
C#
13 lines
247 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Tests.Annotations
|
|
{
|
|
public sealed class LlmDecision
|
|
{
|
|
public string? Function { get; set; }
|
|
public string? Reason { get; set; }
|
|
}
|
|
}
|