BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/IFunctionCallback.cs
2023-08-14 17:14:05 -05:00

10 lines
206 B
C#

using BotSharp.Abstraction.Conversations.Models;
namespace BotSharp.Abstraction.Functions;
public interface IFunctionCallback
{
string Name { get; }
Task<bool> Execute(RoleDialogModel message);
}