mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:19:30 -06:00
16 lines
365 B
C#
16 lines
365 B
C#
namespace FileFlows.AudioNodes;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using FileFlows.Plugin.Attributes;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public Guid Uid => new Guid("d951a39e-4296-4801-ab41-4070b0789465");
|
|
public string Name => "Audio Nodes";
|
|
public string MinimumVersion => "1.0.4.2019";
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|