mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 06:19:31 -06:00
13 lines
353 B
C#
13 lines
353 B
C#
namespace FileFlows.BasicNodes.File
|
|
{
|
|
using System.ComponentModel;
|
|
using FileFlows.Plugin;
|
|
using FileFlows.Plugin.Attributes;
|
|
|
|
public class InputFile : Node
|
|
{
|
|
public override int Outputs => 1;
|
|
public override FlowElementType Type => FlowElementType.Input;
|
|
public override string Icon => "far fa-file";
|
|
}
|
|
} |