mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
26 lines
666 B
C#
26 lines
666 B
C#
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<ContextMenu> ContextMenus = new List<ContextMenu>();
|
|
|
|
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; }
|
|
}
|
|
} |