BotSharp/tests/BotSharp.Plugin.PizzaBot/Functions/MakeOrderFn.cs
2023-08-30 17:40:45 -05:00

15 lines
346 B
C#

using BotSharp.Abstraction.Conversations.Models;
namespace BotSharp.Plugin.PizzaBot.Functions;
public class MakeOrderFn : IFunctionCallback
{
public string Name => "make_order";
public async Task<bool> Execute(RoleDialogModel message)
{
message.ExecutionResult = "The order number is P123-01";
return true;
}
}