namespace BotSharp.Abstraction.Routing.Settings; public class RoutingSettings { /// /// Router Agent Id /// public string RouterId { get; set; } = string.Empty; public bool EnableReasoning { get; set; } = false; public string Provider { get; set; } = string.Empty; public string Model { get; set; } = string.Empty; }