mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-01 14:29:30 -06:00
28 lines
645 B
C#
28 lines
645 B
C#
namespace FileFlows.DiscordNodes;
|
|
|
|
/// <summary>
|
|
/// The plugin information
|
|
/// </summary>
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
/// <summary>
|
|
/// Gets the UID of this plugin
|
|
/// </summary>
|
|
public Guid Uid => new Guid("ebaea108-8783-46b2-a889-be0d79bc8ad6");
|
|
/// <summary>
|
|
/// Gets the name of this plugin
|
|
/// </summary>
|
|
public string Name => "Discord";
|
|
/// <summary>
|
|
/// Gets the minimum version this plugin supports
|
|
/// </summary>
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
|
|
/// <summary>
|
|
/// Initializes this plugin
|
|
/// </summary>
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|