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

9 lines
215 B
C#
Raw Normal View History

2024-06-15 18:40:00 +00:00
namespace BotSharp.Abstraction.Browsing.Models;
public class BrowserActionArgs
{
2024-06-30 13:05:57 +00:00
public bool Headless { get; set; }
2024-12-23 19:53:04 +00:00
public string? UserDataDir { get; set; }
public string? RemoteHostUrl { get; set; }
2024-06-15 18:40:00 +00:00
}