mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
30 lines
665 B
C#
30 lines
665 B
C#
namespace FileFlows.Gotify;
|
|
|
|
/// <summary>
|
|
/// A Gotify Plugin
|
|
/// </summary>
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
/// <summary>
|
|
/// Gets the UID for this plugin
|
|
/// </summary>
|
|
public Guid Uid => new Guid("3d8e13f2-819f-437f-b177-be40147c6e2b");
|
|
|
|
/// <summary>
|
|
/// Gets the name of this plugin
|
|
/// </summary>
|
|
public string Name => "Gotify Nodes";
|
|
|
|
/// <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()
|
|
{
|
|
}
|
|
}
|