BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/BrowserActionResult.cs
2024-05-23 07:05:36 -05:00

17 lines
428 B
C#

namespace BotSharp.Abstraction.Browsing.Models;
public class BrowserActionResult
{
public bool IsSuccess { get; set; }
public string? Message { get; set; }
public string? StackTrace { get; set; }
public string Selector { get; set; }
public string Body { get; set; }
public bool IsHighlighted { get; set; }
public override string ToString()
{
return $"{IsSuccess} - {Selector}";
}
}