Flow.Launcher/Flow.Launcher.Plugin/PluginInitContext.cs

15 lines
311 B
C#
Raw Normal View History

2016-06-19 15:18:43 +00:00
using System;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin
2014-01-03 15:52:36 +00:00
{
public class PluginInitContext
{
2020-03-03 22:25:59 +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-03 15:52:36 +00:00
}
}