mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 21:41:51 +02:00
24 lines
604 B
C#
24 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wox.Plugin.Indexer
|
|
{
|
|
public class Settings
|
|
{
|
|
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; }
|
|
}
|
|
}
|