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

14 lines
305 B
C#
Raw Normal View History

2024-02-28 16:21:14 +00:00
namespace BotSharp.Abstraction.Routing;
public interface IRoutingContext
{
string GetCurrentAgentId();
string OriginAgentId { get; }
bool IsEmpty { get; }
string IntentName { get; set; }
void Push(string agentId);
void Pop();
void Replace(string agentId);
void Empty();
}