mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 15:10:06 -06:00
20 lines
426 B
C#
20 lines
426 B
C#
using FileFlows.Plugin.Attributes;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CollectionNodes;
|
|
|
|
public class Plugin : IPlugin
|
|
{
|
|
public Guid Uid => new Guid("e62e3b2e-5147-4732-92df-f6fbbdb3bb08");
|
|
public string Name => "Collection Nodes";
|
|
public string MinimumVersion => "0.8.3.1487";
|
|
|
|
[Folder(1)]
|
|
[Required]
|
|
public string DataDirectory { get; set; }
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|