Files
FileFlowsPlugins/VideoLegacyNodes/Plugin.cs
T
2022-06-16 13:49:19 +12:00

16 lines
762 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-fbc0fc9deee0");
public string Name => "Video Nodes";
public string MinimumVersion => "0.8.1.1404";
public void Init()
{
}
}