mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-04 11:19:33 -06:00
30 lines
671 B
C#
30 lines
671 B
C#
namespace FileFlows.Pushbullet;
|
|
|
|
/// <summary>
|
|
/// A Pushbullet Plugin
|
|
/// </summary>
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
/// <summary>
|
|
/// Gets the UID for this plugin
|
|
/// </summary>
|
|
public Guid Uid => new Guid("3016f2b9-41cb-45cf-b4f9-a8d9a30dc385");
|
|
|
|
/// <summary>
|
|
/// Gets the name of this plugin
|
|
/// </summary>
|
|
public string Name => "Pushbullet";
|
|
|
|
/// <summary>
|
|
/// Gets the minimum version of FileFlows required for this plugin
|
|
/// </summary>
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
|
|
/// <summary>
|
|
/// Initializes this plugin
|
|
/// </summary>
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|