mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 07:39:29 -06:00
13 lines
310 B
C#
13 lines
310 B
C#
namespace MetaNodes;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public Guid Uid => new Guid("ed1e2547-6f92-4bc8-ae49-fcd7c74e7e9c");
|
|
public string Name => "Meta Nodes";
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
|
|
public void Init() { }
|
|
}
|