mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-25 14:18:25 -06:00
plugins now have constant UID
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
using FileFlows.Plugin.Attributes;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CollectionNodes
|
||||
namespace CollectionNodes;
|
||||
|
||||
public class Plugin : IPlugin
|
||||
{
|
||||
public class Plugin : IPlugin
|
||||
public Guid Uid => new Guid("e62e3b2e-5147-4732-92df-f6fbbdb3bb08");
|
||||
public string Name => "Collection Nodes";
|
||||
public string MinimumVersion => "0.6.3.1000";
|
||||
|
||||
[Folder(1)]
|
||||
[Required]
|
||||
public string DataDirectory { get; set; }
|
||||
|
||||
public void Init()
|
||||
{
|
||||
public string Name => "Collection Nodes";
|
||||
public string MinimumVersion => "0.6.3.1000";
|
||||
|
||||
[Folder(1)]
|
||||
[Required]
|
||||
public string DataDirectory { get; set; }
|
||||
|
||||
public void Init()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user