mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
Added Plugin for searching additional directories
This commit is contained in:
10
Wox.Infrastructure/Storage/UserSettings/FolderLink.cs
Normal file
10
Wox.Infrastructure/Storage/UserSettings/FolderLink.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Wox.Infrastructure.Storage.UserSettings {
|
||||
public class FolderLink {
|
||||
public string Path { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -47,6 +47,9 @@ namespace Wox.Infrastructure.Storage.UserSettings
|
||||
[JsonProperty]
|
||||
public List<ProgramSource> ProgramSources { get; set; }
|
||||
|
||||
[JsonProperty]
|
||||
public List<FolderLink> FolderLinks { get; set; } //Aaron
|
||||
|
||||
[JsonProperty]
|
||||
public List<CustomPluginHotkey> CustomPluginHotkeys { get; set; }
|
||||
|
||||
|
||||
@@ -49,6 +49,7 @@
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Storage\UserSettings\FolderLink.cs" />
|
||||
<Compile Include="Unidecoder.Characters.cs" />
|
||||
<Compile Include="ChineseToPinYin.cs" />
|
||||
<Compile Include="HttpRequest.cs" />
|
||||
|
||||
Reference in New Issue
Block a user