BotSharp/src/Plugins/BotSharp.Plugin.WebDriver/LlmContexts/BrowsingContextIn.cs

25 lines
598 B
C#
Raw Normal View History

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
2024-01-10 14:18:59 +00:00
[JsonPropertyName("update_value")]
public string? UpdateValue { 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
}