BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/InstructHookBase.cs
2023-10-25 10:48:25 -05:00

18 lines
442 B
C#

using BotSharp.Abstraction.Instructs.Models;
namespace BotSharp.Abstraction.Instructs;
public class InstructHookBase : IInstructHook
{
public virtual string SelfId => throw new NotImplementedException("Please set SelfId as agent id!");
public virtual async Task AfterCompletion(InstructResult result)
{
return;
}
public virtual async Task BeforeCompletion(RoleDialogModel message)
{
return;
}
}