Files
FileFlowsPlugins/BasicNodes/Plugin.cs

14 lines
734 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 FileFlows.BasicNodes
{
using System.ComponentModel.DataAnnotations;
public class Plugin : FileFlows.Plugin.IPlugin
{
public Guid Uid => new Guid("789b5213-4ca5-42da-816e-f2117f00cd16");
public string Name => "Basic Nodes";
public string MinimumVersion => "0.7.0.0";
public void Init() { }
}
}