namespace FileFlows.Gotify; /// /// A Gotify Plugin /// public class Plugin : FileFlows.Plugin.IPlugin { /// /// Gets the UID for this plugin /// public Guid Uid => new Guid("3d8e13f2-819f-437f-b177-be40147c6e2b"); /// /// Gets the name of this plugin /// public string Name => "Gotify"; /// /// Gets the minimum version of FileFlows required for this plugin /// public string MinimumVersion => "1.0.4.2019"; /// public string Icon => "svg:gotify"; /// /// Initializes this plugin /// public void Init() { } }