8 lines
156 B
C#
8 lines
156 B
C#
namespace BotSharp.Abstraction.Functions;
|
|
|
|
public interface IFunctionCallback
|
|
{
|
|
string Name { get; }
|
|
Task<bool> Execute(RoleDialogModel message);
|
|
}
|