Flow.Launcher/Wox.Plugin/PluginInitContext.cs

20 lines
420 B
C#
Raw Normal View History

2014-01-03 15:52:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2014-01-29 10:33:24 +00:00
namespace Wox.Plugin
2014-01-03 15:52:36 +00:00
{
public class PluginInitContext
{
2015-01-24 14:34:55 +00:00
public PluginMetadata CurrentPluginMetadata { get; internal set; }
2014-07-05 15:10:34 +00:00
/// <summary>
/// Public APIs for plugin invocation
/// </summary>
public IPublicAPI API { get; set; }
2014-01-05 09:56:02 +00:00
2014-07-18 12:00:55 +00:00
public IHttpProxy Proxy { get; set; }
2014-01-03 15:52:36 +00:00
}
}