17 lines
385 B
C#
17 lines
385 B
C#
|
|
using System.Text.Json;
|
||
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace BotSharp.Abstraction.Routing.Models;
|
||
|
|
|
||
|
|
public class RetrievalArgs : RoutingArgs
|
||
|
|
{
|
||
|
|
[JsonPropertyName("question")]
|
||
|
|
public string Question { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("reason")]
|
||
|
|
public string Reason { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("args")]
|
||
|
|
public JsonDocument Arguments { get; set; }
|
||
|
|
}
|