mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-21 00:49:33 -06:00
11 lines
224 B
C#
11 lines
224 B
C#
namespace FileFlows.BasicNodes
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public string Name => "Basic Nodes";
|
|
|
|
public void Init() { }
|
|
}
|
|
} |