plugins now have constant UID

This commit is contained in:
John Andrews
2022-06-03 09:56:05 +12:00
parent 763afbedd6
commit 8e5cd21d23
39 changed files with 780 additions and 130 deletions

View File

@@ -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()
{
}
}
}
}