namespace FileFlows.Pushbullet;
///
/// A Pushbullet Plugin
///
public class Plugin : FileFlows.Plugin.IPlugin
{
///
/// Gets the UID for this plugin
///
public Guid Uid => new Guid("3016f2b9-41cb-45cf-b4f9-a8d9a30dc385");
///
/// Gets the name of this plugin
///
public string Name => "Pushbullet";
///
/// Gets the minimum version of FileFlows required for this plugin
///
public string MinimumVersion => "1.0.4.2019";
///
public string Icon => "svg:pushbullet";
///
/// Initializes this plugin
///
public void Init()
{
}
}