BotSharp/tests/BotSharp.Plugin.PizzaBot/Functions/MakeOrderFn.cs

15 lines
346 B
C#
Raw Normal View History

2023-08-30 22:40:45 +00:00
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;
}
}