using BotSharp.Abstraction.Conversations.Models; namespace BotSharp.Abstraction.Functions; public interface IFunctionCallback { string Name { get; } Task Execute(RoleDialogModel message); }