using System.Collections.Generic; using System.ComponentModel; using Newtonsoft.Json; using Wox.Infrastructure.Storage; namespace Wox.Plugin.Everything { public class Settings { public string EditorPath { get; set; } = ""; public List ContextMenus = new List(); public int MaxSearchCount { get; set; } = 100; public bool UseLocationAsWorkingDir { get; set; } = false; } public class ContextMenu { public string Name { get; set; } public string Command { get; set; } public string Argument { get; set; } public string ImagePath { get; set; } } }