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