BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/Models/RoutingArgs.cs

13 lines
244 B
C#
Raw Normal View History

2023-08-28 03:50:10 +00:00
namespace BotSharp.Abstraction.Routing.Models;
public class RoutingArgs
{
2023-09-24 21:32:58 +00:00
[JsonPropertyName("agent")]
2023-09-21 13:08:27 +00:00
public string AgentName { get; set; } = string.Empty;
public override string ToString()
{
2023-09-25 22:46:00 +00:00
return AgentName;
}
}