mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-04 22:49:31 -06:00
20 lines
467 B
C#
20 lines
467 B
C#
namespace FileFlows.Docker;
|
|
|
|
/// <summary>
|
|
/// Plugin Info
|
|
/// </summary>
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
/// <inheritdoc />
|
|
public Guid Uid => new Guid("1df9239a-3ce5-44b1-9113-3cdcae980a69");
|
|
/// <inheritdoc />
|
|
public string Name => "Docker";
|
|
/// <inheritdoc />
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
|
|
/// <inheritdoc />
|
|
public string Icon => "svg:docker";
|
|
|
|
/// <inheritdoc />
|
|
public void Init() { }
|
|
} |