mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-28 23:09:40 -06:00
13 lines
594 B
C#
13 lines
594 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()
|
||
{
|
||
}
|
||
}
|