namespace FileFlows.Pushover;
///
/// A Pushover Plugin
///
public class Plugin : FileFlows.Plugin.IPlugin
{
///
/// Gets the UID for this plugin
///
public Guid Uid => new Guid("99cc0b7e-e470-4829-9a3b-30e8cc2ee749");
///
/// Gets the name of this plugin
///
public string Name => "Pushover";
///
/// Gets the minimum version of FileFlows required for this plugin
///
public string MinimumVersion => "1.0.4.2019";
///
public string Icon => "svg:pushover";
///
/// Initializes this plugin
///
public void Init()
{
}
}