mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
a6e82475a3
1. Add useful context menu items in everything 2. Add settings in Url plugin, can set browser path * let url plugin support multi Languages
14 lines
235 B
C#
14 lines
235 B
C#
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; }
|
|
}
|
|
}
|