mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-16 04:29:16 +08:00
9 lines
214 B
C#
9 lines
214 B
C#
namespace Wox.Plugin.BrowserBookmark.Models
|
|
{
|
|
public class Settings : BaseModel
|
|
{
|
|
public bool OpenInNewBrowserWindow { get; set; } = true;
|
|
|
|
public string BrowserPath { get; set; }
|
|
}
|
|
} |