mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
Rename the project.
This commit is contained in:
20
Wox.Plugin/PluginInitContext.cs
Normal file
20
Wox.Plugin/PluginInitContext.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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 PluginMetadata { 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user