Files
FileFlowsPlugins/MetaNodes/Plugin.cs
2022-06-14 09:56:47 +12:00

13 lines
646 B
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 => "0.8.0.1378";
public void Init() { }
}