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

12 lines
333 B
C#
Raw Normal View History

2024-03-08 13:19:13 +00:00
namespace BotSharp.Abstraction.Browsing.Models;
public class BrowserActionResult
{
public bool IsSuccess { get; set; }
2024-04-08 15:09:08 +00:00
public string? Message { get; set; }
public string? StackTrace { get; set; }
2024-03-08 13:19:13 +00:00
public string Selector { get; set; }
public string Body { get; set; }
2024-04-08 15:09:08 +00:00
public bool IsHighlighted { get; set; }
2024-03-08 13:19:13 +00:00
}