mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 06:30:25 -06:00
12 lines
278 B
C#
12 lines
278 B
C#
namespace FileFlows.BasicNodes
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public string Name => "Basic Nodes";
|
|
public string MinimumVersion => "0.6.3.1000";
|
|
|
|
public void Init() { }
|
|
}
|
|
} |