2024-01-27 14:58:51 +00:00
|
|
|
namespace BotSharp.Plugin.WebDriver.Models;
|
|
|
|
|
|
|
|
|
|
internal class MarkupProperties
|
|
|
|
|
{
|
2024-01-27 15:20:02 +00:00
|
|
|
public string? Id { get; set; }
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
public string? Type { get; set; }
|
|
|
|
|
public string? Text { get; set; }
|
2024-02-01 03:29:13 +00:00
|
|
|
public string? Placeholder { get; set; }
|
2024-01-27 14:58:51 +00:00
|
|
|
}
|