Files
FileFlowsPlugins/CollectionNodes/Plugin.cs

20 lines
886 B
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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.7.0.0";
[Folder(1)]
[Required]
public string DataDirectory { get; set; }
public void Init()
{
}
}