mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
16 lines
365 B
C#
16 lines
365 B
C#
namespace FileFlows.VideoNodes;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using FileFlows.Plugin.Attributes;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public Guid Uid => new Guid("881b486b-4b38-4e66-b39e-fbc0fc9deee1");
|
|
public string Name => "Video Nodes";
|
|
public string MinimumVersion => "1.0.0.1864";
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|