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