Add more settings

This commit is contained in:
Jack251970 2025-09-04 17:30:08 +08:00
parent f848d1b7b2
commit c9ca9ad4ba

View file

@ -2,8 +2,12 @@
{
public class Settings
{
public string BrowserPath { get; set; }
public bool UseCustomBrowser { get; set; } = false;
public bool OpenInNewBrowserWindow { get; set; } = true;
public string BrowserPath { get; set; } = string.Empty;
public bool OpenInNewBrowserWindow { get; set; } = false;
public bool OpenInPrivateMode { get; set; } = false;
}
}