FF-1721: New plugin Nextcloud

This commit is contained in:
John Andrews
2024-08-12 09:32:52 +12:00
parent d47163b600
commit 088a6e2d73
15 changed files with 1049 additions and 0 deletions

18
Nextcloud/Plugin.cs Normal file
View File

@@ -0,0 +1,18 @@
namespace FileFlows.Nextcloud;
public class Plugin : FileFlows.Plugin.IPlugin
{
/// <inheritdoc />
public Guid Uid => new Guid("162b4ed0-da61-42de-85e1-576b9d7a2f82");
/// <inheritdoc />
public string Name => "Nextcloud";
/// <inheritdoc />
public string MinimumVersion => "24.8.1.3444";
/// <inheritdoc />
public string Icon => "svg:nextcloud";
/// <inheritdoc />
public void Init()
{
}
}