Add user selection option for browserbookmark plugin

This commit is contained in:
Jeremy Wu
2019-11-11 08:00:31 +11:00
parent 91e9bdfc31
commit c17eb5fce5
5 changed files with 108 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
namespace Wox.Plugin.BrowserBookmark.Models
{
public class Settings : BaseModel
{
public bool OpenInNewBrowserWindow { get; set; } = true;
}
}