mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 13:09:59 -06:00
13 lines
284 B
C#
13 lines
284 B
C#
namespace FileFlows.ImageNodes;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public Guid Uid => new Guid("a6ddeee5-4c5a-46c5-80d5-e48552dd6a9b");
|
|
public string Name => "Image Nodes";
|
|
public string MinimumVersion => "0.8.0.1378";
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|