13 lines
271 B
C#
13 lines
271 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace BotSharp.Plugin.WebDriver.LlmContexts;
|
||
|
|
|
||
|
|
public class HtmlElementContextOut
|
||
|
|
{
|
||
|
|
[JsonPropertyName("tag_name")]
|
||
|
|
public string TagName { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("index")]
|
||
|
|
public int Index { get; set; }
|
||
|
|
}
|