Files
FileFlowsPlugins/ChecksumNodes/Plugin.cs

13 lines
546 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.
namespace ChecksumNodes;
public class Plugin : IPlugin
{
public Guid Uid => new Guid("5ce1524c-5e7b-40ee-9fc1-2152181490f1");
public string Name => "Checksum Nodes";
public string MinimumVersion => "0.7.0.0";
public void Init()
{
}
}