mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-21 00:49:33 -06:00
17 lines
479 B
C#
17 lines
479 B
C#
namespace FileFlows.BasicNodes.File
|
|
{
|
|
using System.ComponentModel;
|
|
using FileFlows.Plugin;
|
|
using FileFlows.Plugin.Attributes;
|
|
|
|
public class FileExtension : Node
|
|
{
|
|
public override int Inputs => 1;
|
|
public override int Outputs => 2;
|
|
public override string Icon => "far fa-file-excel";
|
|
|
|
[StringArray(1)]
|
|
public string[] Extensions { get; set; }
|
|
public override FlowElementType Type => FlowElementType.Logic;
|
|
}
|
|
} |