mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-21 00:39:35 -06:00
19 lines
421 B
C#
19 lines
421 B
C#
namespace FileFlows.EmailNodes;
|
|
|
|
public class Plugin : IPlugin
|
|
{
|
|
/// <inheritdoc />
|
|
public Guid Uid => new Guid("b5077522-4a31-4faa-b9a7-b409ecb9c01e");
|
|
/// <inheritdoc />
|
|
public string Name => "Email";
|
|
/// <inheritdoc />
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
/// <inheritdoc />
|
|
public string Icon => "fas fa-envelope";
|
|
|
|
/// <inheritdoc />
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|