10 lines
206 B
C#
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);
|
|
}
|