PowerToys/Plugins/Wox.Plugin.Url/Settings.cs

16 lines
301 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wox.Plugin.Url
{
public class Settings
{
public string BrowserPath { get; set; }
2019-11-11 03:04:16 +08:00
public bool OpenInNewBrowserWindow { get; set; } = true;
}
}