Files
FileFlowsPlugins/FileDrop/Plugin.cs
John Andrews 72f644ef3d filedrop
2025-02-16 13:20:43 +13:00

22 lines
500 B
C#

namespace FileFlows.FileDropPlugin;
/// <summary>
/// Plugin Information
/// </summary>
public class Plugin : FileFlows.Plugin.IPlugin
{
/// <inheritdoc />
public Guid Uid => new Guid("ba8cfaa3-4ac0-4a39-9e1b-a48def94eb3d");
/// <inheritdoc />
public string Name => "File Drop";
/// <inheritdoc />
public string MinimumVersion => "24.12.4.4168";
/// <inheritdoc />
public string Icon => "fas fa-tint";
/// <inheritdoc />
public void Init()
{
}
}