BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/Models/FunctionDef.cs
2023-09-27 22:31:58 -05:00

14 lines
341 B
C#

namespace BotSharp.Abstraction.Functions.Models;
public class FunctionDef
{
public string Name { get; set; }
public string Description { get; set; }
public FunctionParametersDef Parameters { get; set; } = new FunctionParametersDef();
public override string ToString()
{
return $"{Name}: {Description}";
}
}