2023-07-30 18:22:07 +00:00
|
|
|
namespace BotSharp.Abstraction.Functions;
|
|
|
|
|
|
|
|
|
|
public interface IFunctionCallback
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
2024-04-30 21:25:58 +00:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Indicator message used to provide UI feedback for function execution
|
|
|
|
|
/// </summary>
|
|
|
|
|
string Indication => string.Empty;
|
|
|
|
|
|
2023-08-14 22:14:05 +00:00
|
|
|
Task<bool> Execute(RoleDialogModel message);
|
2023-07-30 18:22:07 +00:00
|
|
|
}
|