added plex plugin

This commit is contained in:
John Andrews
2022-04-21 11:36:21 +12:00
parent 342c53c3ba
commit 60ec00e2f5
33 changed files with 319 additions and 1 deletions

18
Plex/PluginSettings.cs Normal file
View File

@@ -0,0 +1,18 @@
namespace FileFlows.Plex
{
using FileFlows.Plugin;
using FileFlows.Plugin.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
public class PluginSettings:IPluginSettings
{
[Text(1)]
[Required]
public string ServerUrl { get; set; }
[Text(2)]
[Required]
public string AccessToken { get; set; }
}
}