2024-01-03 04:43:37 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.WebDriver.LlmContexts;
|
|
|
|
|
|
|
|
|
|
public class BrowsingContextIn
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("url")]
|
|
|
|
|
public string? Url { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("element_name")]
|
|
|
|
|
public string? ElementName { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("input_text")]
|
|
|
|
|
public string? InputText { get; set; }
|
2024-01-06 03:24:13 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("password")]
|
|
|
|
|
public string? Password { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("question")]
|
|
|
|
|
public string? Question { get; set; }
|
2024-01-03 04:43:37 +00:00
|
|
|
}
|