mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-05-07 05:49:43 -05:00
12 lines
266 B
C#
12 lines
266 B
C#
namespace MetaNodes
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public string Name => "Meta Nodes";
|
|
public string MinimumVersion => "0.6.3.1000";
|
|
|
|
public void Init() { }
|
|
}
|
|
} |