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

11 lines
292 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; }
public string ErrorMessage { get; set; }
public string StackTrace { get; set; }
public string Selector { get; set; }
public string Body { get; set; }
}