BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/IFunctionCallback.cs

10 lines
206 B
C#
Raw Normal View History

2023-08-14 22:14:05 +00:00
using BotSharp.Abstraction.Conversations.Models;
2023-07-30 18:22:07 +00:00
namespace BotSharp.Abstraction.Functions;
public interface IFunctionCallback
{
string Name { get; }
2023-08-14 22:14:05 +00:00
Task<bool> Execute(RoleDialogModel message);
2023-07-30 18:22:07 +00:00
}