mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 03:00:18 -06:00
22 lines
494 B
C#
22 lines
494 B
C#
namespace FileFlows.Nextcloud;
|
|
|
|
/// <summary>
|
|
/// Nextcloud plugin
|
|
/// </summary>
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
/// <inheritdoc />
|
|
public Guid Uid => new Guid("c9aff033-ae5b-45ad-81b0-8691c850242a");
|
|
/// <inheritdoc />
|
|
public string Name => "Nextcloud";
|
|
/// <inheritdoc />
|
|
public string MinimumVersion => "24.8.1.3444";
|
|
/// <inheritdoc />
|
|
public string Icon => "svg:nextcloud";
|
|
|
|
/// <inheritdoc />
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|