mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
39edf1a8ed
1. part of #389 2. file rename 3. fixup
22 lines
544 B
C#
22 lines
544 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Everything
|
|
{
|
|
public class Settings
|
|
{
|
|
public List<ContextMenu> ContextMenus = new List<ContextMenu>();
|
|
|
|
public int MaxSearchCount { get; set; } = 100;
|
|
}
|
|
|
|
public class ContextMenu
|
|
{
|
|
public string Name { get; set; }
|
|
public string Command { get; set; }
|
|
public string Argument { get; set; }
|
|
public string ImagePath { get; set; }
|
|
}
|
|
} |