BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/IFunctionCallback.cs
2023-09-25 22:04:04 -05:00

8 lines
156 B
C#

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