Flow.Launcher/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Models/CustomBrowser.cs

26 lines
635 B
C#
Raw Permalink Normal View History

namespace Flow.Launcher.Plugin.BrowserBookmark.Models
{
public class CustomBrowser : BaseModel
{
2021-09-23 18:32:10 +00:00
private string _name;
private string _dataDirectoryPath;
public string Name
{
get => _name;
set
{
_name = value;
OnPropertyChanged(nameof(Name));
}
}
public string DataDirectoryPath
{
get => _dataDirectoryPath;
set
{
_dataDirectoryPath = value;
OnPropertyChanged(nameof(DataDirectoryPath));
}
}
}
}