BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/IRoutingService.cs

9 lines
227 B
C#
Raw Normal View History

2023-09-03 04:11:53 +00:00
namespace BotSharp.Abstraction.Routing;
public interface IRoutingService
{
2023-09-20 10:31:50 +00:00
Agent LoadRouter();
2023-09-19 12:17:50 +00:00
List<RoleDialogModel> Dialogs { get; }
Task<RoleDialogModel> Enter(Agent agent, List<RoleDialogModel> whileDialogs);
2023-09-03 04:11:53 +00:00
}