mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
15 lines
332 B
C#
15 lines
332 B
C#
namespace FileFlows.VideoNodes
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using FileFlows.Plugin.Attributes;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public string Name => "Video Nodes";
|
|
public string MinimumVersion => "0.3.3.410";
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|
|
} |