BotSharp/src/Plugins/BotSharp.Plugin.WebDriver/LlmContexts/HtmlElementContextOut.cs
2024-01-31 21:29:13 -06:00

19 lines
435 B
C#

using System.Text.Json.Serialization;
namespace BotSharp.Plugin.WebDriver.LlmContexts;
public class HtmlElementContextOut
{
[JsonPropertyName("element_id")]
public string ElementId { get; set; }
[JsonPropertyName("element_name")]
public string ElementName { get; set; }
[JsonPropertyName("tag_name")]
public string TagName { get; set; }
[JsonPropertyName("index")]
public int Index { get; set; }
}