BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/ElementActionArgs.cs

13 lines
232 B
C#
Raw Normal View History

2024-03-08 13:19:13 +00:00
namespace BotSharp.Abstraction.Browsing.Models;
public class ElementActionArgs
{
private string _action;
public string Action => _action;
public ElementActionArgs(string action)
{
_action = action;
}
}