PowerToys/WinAlfred.Plugin/PluginInitContext.cs

14 lines
278 B
C#
Raw Normal View History

2014-01-03 16:52:36 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WinAlfred.Plugin
{
public class PluginInitContext
{
public List<PluginPair> Plugins { get; set; }
public Action<string> ChangeQuery { get; set; }
}
}