BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructHook.cs

11 lines
252 B
C#
Raw Normal View History

2023-09-08 17:03:49 +00:00
using BotSharp.Abstraction.Instructs.Models;
namespace BotSharp.Abstraction.Instructs;
public interface IInstructHook
{
2023-10-25 15:48:25 +00:00
string SelfId { get; }
2023-09-08 17:03:49 +00:00
Task BeforeCompletion(RoleDialogModel message);
Task AfterCompletion(InstructResult result);
}