2023-08-30 02:19:19 +00:00
|
|
|
namespace BotSharp.Abstraction.Routing.Settings;
|
|
|
|
|
|
|
|
|
|
public class RoutingSettings
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Router Agent Id
|
|
|
|
|
/// </summary>
|
2024-01-13 21:17:40 +00:00
|
|
|
public string[] AgentIds { get; set; } = new string[0];
|
2023-08-30 02:19:19 +00:00
|
|
|
|
2023-10-28 20:59:26 +00:00
|
|
|
public string Planner { get; set; } = string.Empty;
|
2023-08-30 02:19:19 +00:00
|
|
|
}
|