mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
18 lines
562 B
C#
18 lines
562 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Flow.Launcher.Plugin.BrowserBookmark.Models;
|
|
|
|
public class Settings : BaseModel
|
|
{
|
|
public bool OpenInNewBrowserWindow { get; set; } = true;
|
|
|
|
public string BrowserPath { get; set; }
|
|
|
|
public bool EnableFavicons { get; set; } = false;
|
|
|
|
public bool LoadChromeBookmark { get; set; } = true;
|
|
public bool LoadFirefoxBookmark { get; set; } = true;
|
|
public bool LoadEdgeBookmark { get; set; } = true;
|
|
|
|
public ObservableCollection<CustomBrowser> CustomChromiumBrowsers { get; set; } = new();
|
|
}
|