BotSharp/tests/BotSharp.Plugin.PizzaBot/Functions/GetDeliveryTimeFn.cs
2023-09-19 07:17:50 -05:00

15 lines
352 B
C#

using BotSharp.Abstraction.Conversations.Models;
namespace BotSharp.Plugin.PizzaBot.Functions;
public class GetDeliveryTimeFn : IFunctionCallback
{
public string Name => "get_delivery_time";
public async Task<bool> Execute(RoleDialogModel message)
{
message.ExecutionResult = "15 minutes remaining";
return true;
}
}