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

9 lines
199 B
C#
Raw Normal View History

2023-09-08 17:03:49 +00:00
using BotSharp.Abstraction.Instructs.Models;
2023-09-01 22:26:25 +00:00
namespace BotSharp.Abstraction.Instructs;
public interface IInstructService
{
2023-10-23 23:20:18 +00:00
Task<InstructResult> Execute(Agent agent, RoleDialogModel message);
2023-09-01 22:26:25 +00:00
}