mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 03:00:18 -06:00
12 lines
265 B
C#
12 lines
265 B
C#
namespace MetaNodes
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public string Name => "Meta Nodes";
|
|
public string MinimumVersion => "0.3.3.410";
|
|
|
|
public void Init() { }
|
|
}
|
|
} |