mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-07 23:40:35 -06:00
13 lines
562 B
C#
13 lines
562 B
C#
namespace FileFlows.Plex;
|
||
|
||
public class Plugin : FileFlows.Plugin.IPlugin
|
||
{
|
||
public Guid Uid => new Guid("5be72267-7574-4ba9-a958-f3dda0d6c2dc");
|
||
public string Name => "Plex";
|
||
public string MinimumVersion => "0.7.0.0";
|
||
|
||
public void Init()
|
||
{
|
||
}
|
||
}
|