11 lines
238 B
C#
11 lines
238 B
C#
|
|
using System.Text.Json;
|
||
|
|
|
||
|
|
namespace BotSharp.Abstraction.Conversations.Models;
|
||
|
|
|
||
|
|
public class FunctionDef
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string Description { get; set; }
|
||
|
|
public JsonDocument Parameters { get; set; }
|
||
|
|
}
|