namespace FileFlows.DiscordNodes; /// /// The plugin information /// public class Plugin : FileFlows.Plugin.IPlugin { /// /// Gets the UID of this plugin /// public Guid Uid => new Guid("ebaea108-8783-46b2-a889-be0d79bc8ad6"); /// /// Gets the name of this plugin /// public string Name => "Discord"; /// /// Gets the minimum version this plugin supports /// public string MinimumVersion => "1.0.4.2019"; /// /// Initializes this plugin /// public void Init() { } }