mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
24 lines
610 B
C#
24 lines
610 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Microsoft.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; }
|
|||
|
}
|
|||
|
}
|