mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
24 lines
667 B
C#
24 lines
667 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public class PluginInitContext
|
|
{
|
|
public List<PluginPair> Plugins { get; set; }
|
|
public PluginMetadata CurrentPluginMetadata { get; set; }
|
|
|
|
|
|
public Action<string> ChangeQuery { get; set; }
|
|
public Action CloseApp { get; set; }
|
|
public Action HideApp { get; set; }
|
|
public Action ShowApp { get; set; }
|
|
public Action<string,string,string> ShowMsg { get; set; }
|
|
public Action OpenSettingDialog { get; set; }
|
|
|
|
public Action<string> ShowCurrentResultItemTooltip { get; set; }
|
|
}
|
|
}
|