mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 01:20:00 -06:00
19 lines
422 B
C#
19 lines
422 B
C#
namespace ChecksumNodes;
|
|
|
|
public class Plugin : IPlugin
|
|
{
|
|
/// <inheritdoc />
|
|
public Guid Uid => new Guid("5ce1524c-5e7b-40ee-9fc1-2152181490f1");
|
|
/// <inheritdoc />
|
|
public string Name => "Checksum";
|
|
/// <inheritdoc />
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
/// <inheritdoc />
|
|
public string Icon => "fas fa-file-contract";
|
|
|
|
/// <inheritdoc />
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|