10 lines
227 B
C#
10 lines
227 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; }
|
||
|
|
}
|