lampac/Shared/Models/AppConf/PuppeteerConf.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

24 lines
476 B
C#

using Shared.Models.Browser;
namespace Shared.Models.AppConf
{
public class PuppeteerConf
{
public bool enable { get; set; }
public KeepopenContext context { get; set; }
public bool Headless { get; set; }
public bool DEV { get; set; }
public bool consoleLog { get; set; }
public bool Devtools { get; set; }
public string executablePath { get; set; }
public string[] Args { get; set; }
}
}