2023-04-25 12:04:08 +00:00
|
|
|
|
using System.Collections.ObjectModel;
|
2021-09-22 23:09:30 +00:00
|
|
|
|
|
2024-04-16 07:00:19 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.BrowserBookmark.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public class Settings : BaseModel
|
2019-11-10 21:00:31 +00:00
|
|
|
|
{
|
2024-04-16 07:00:19 +00:00
|
|
|
|
public bool OpenInNewBrowserWindow { get; set; } = true;
|
2019-11-11 10:17:37 +00:00
|
|
|
|
|
2024-04-16 07:00:19 +00:00
|
|
|
|
public string BrowserPath { get; set; }
|
2021-09-22 23:09:30 +00:00
|
|
|
|
|
2025-06-05 02:21:24 +00:00
|
|
|
|
public bool EnableFavicons { get; set; } = false;
|
2025-06-04 15:17:38 +00:00
|
|
|
|
|
2024-04-16 07:00:19 +00:00
|
|
|
|
public bool LoadChromeBookmark { get; set; } = true;
|
|
|
|
|
|
public bool LoadFirefoxBookmark { get; set; } = true;
|
|
|
|
|
|
public bool LoadEdgeBookmark { get; set; } = true;
|
2022-10-12 21:11:15 +00:00
|
|
|
|
|
2024-04-16 07:00:19 +00:00
|
|
|
|
public ObservableCollection<CustomBrowser> CustomChromiumBrowsers { get; set; } = new();
|
|
|
|
|
|
}
|