namespace FileFlows.ImageNodes; /// /// Describes the plugin /// public class Plugin : FileFlows.Plugin.IPlugin { /// /// Gets the UID of the plugin /// public Guid Uid => new Guid("008801f1-76fb-4316-bc45-b1beb284b76b"); /// /// Gets the name of the plugin /// public string Name => "Site Scraping"; /// /// Gets the minimum version of the FileFlows server this plugin must use /// public string MinimumVersion => "24.1.2.2019"; /// public string Icon => "fas fa-globe-asia"; /// /// Initializes the plugin /// public void Init() { } }