mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
No EOL
544 B
C#
17 lines
No EOL
544 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 LoadChromeBookmark { get; set; } = true;
|
|
public bool LoadFirefoxBookmark { get; set; } = true;
|
|
public bool LoadEdgeBookmark { get; set; } = true;
|
|
|
|
public ObservableCollection<CustomBrowser> CustomChromiumBrowsers { get; set; } = new();
|
|
}
|
|
} |