BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/BrowserActionArgs.cs
2024-12-23 19:53:04 +00:00

9 lines
215 B
C#

namespace BotSharp.Abstraction.Browsing.Models;
public class BrowserActionArgs
{
public bool Headless { get; set; }
public string? UserDataDir { get; set; }
public string? RemoteHostUrl { get; set; }
}