Added Plugin for searching additional directories

This commit is contained in:
Aaron Campf
2014-03-30 16:03:07 -07:00
parent dc5eeb8476
commit 6b9f96697b
12 changed files with 329 additions and 2 deletions

View 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; }
}
}

View File

@@ -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; }