mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
44 lines
799 B
C#
44 lines
799 B
C#
namespace Flow.Launcher.Plugin.BrowserBookmark.Models;
|
|
|
|
public class CustomBrowser : BaseModel
|
|
{
|
|
private string _name;
|
|
private string _dataDirectoryPath;
|
|
private BrowserType _browserType = BrowserType.Chromium;
|
|
|
|
public string Name
|
|
{
|
|
get => _name;
|
|
set
|
|
{
|
|
_name = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
public string DataDirectoryPath
|
|
{
|
|
get => _dataDirectoryPath;
|
|
set
|
|
{
|
|
_dataDirectoryPath = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
public BrowserType BrowserType
|
|
{
|
|
get => _browserType;
|
|
set
|
|
{
|
|
_browserType = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum BrowserType
|
|
{
|
|
Chromium,
|
|
Firefox,
|
|
}
|