11 lines
276 B
C#
11 lines
276 B
C#
namespace BotSharp.Plugin.WebDriver.Models;
|
|
|
|
internal class MarkupProperties
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Type { get; set; }
|
|
public string? Text { get; set; }
|
|
public string? Placeholder { get; set; }
|
|
}
|