mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-04-30 09:09:18 -05:00
16 lines
762 B
C#
16 lines
762 B
C#
namespace FileFlows.MusicNodes;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using FileFlows.Plugin.Attributes;
|
|
|
|
public class Plugin : FileFlows.Plugin.IPlugin
|
|
{
|
|
public Guid Uid => new Guid("d84fbd06-f0e3-4827-8de0-6b0ef20dd883");
|
|
public string Name => "Music Nodes";
|
|
public string MinimumVersion => "0.8.1.1404";
|
|
|
|
public void Init()
|
|
{
|
|
}
|
|
}
|