mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 04:09:32 -06:00
14 lines
740 B
C#
14 lines
740 B
C#
namespace FileFlows.BasicNodes
|
||
{
|
||
using System.ComponentModel.DataAnnotations;
|
||
|
||
public class Plugin : FileFlows.Plugin.IPlugin
|
||
{
|
||
public Guid Uid => new Guid("789b5213-4ca5-42da-816e-f2117f00cd16");
|
||
public string Name => "Basic Nodes";
|
||
public string MinimumVersion => "0.8.0.1378";
|
||
|
||
public void Init() { }
|
||
}
|
||
}
|