Files
FileFlowsPlugins/Reseller/Plugin.cs
2024-12-26 17:04:25 +13:00

22 lines
507 B
C#

namespace FileFlows.ResellerPlugin;
/// <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 => "Reseller";
/// <inheritdoc />
public string MinimumVersion => "24.12.4.4168";
/// <inheritdoc />
public string Icon => "fas fa-people-carry";
/// <inheritdoc />
public void Init()
{
}
}