mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-11 05:52:19 +02:00
Added the main and settings file which declare most of the plugin interfaces
This commit is contained in:
23
src/modules/launcher/Plugins/Wox.Plugin.Indexer/Settings.cs
Normal file
23
src/modules/launcher/Plugins/Wox.Plugin.Indexer/Settings.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user