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

8 lines
156 B
C#
Raw Normal View History

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
}