mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 17:29:30 -06:00
19 lines
398 B
C#
19 lines
398 B
C#
using FileFlows.Plugin.Attributes;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CollectionNodes
|
|
{
|
|
public class Plugin : IPlugin
|
|
{
|
|
public string Name => "Collection Nodes";
|
|
public string MinimumVersion => "0.6.3.1000";
|
|
|
|
[Folder(1)]
|
|
[Required]
|
|
public string DataDirectory { get; set; }
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|
|
} |