15 lines
271 B
C#
15 lines
271 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BotSharp.Abstraction.Agents.Models;
|
|
|
|
public class RoutingArgs
|
|
{
|
|
[JsonPropertyName("agent_name")]
|
|
public string AgentName { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return AgentName;
|
|
}
|
|
}
|