mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-21 15:18:31 -06:00
added plex plugin
This commit is contained in:
18
Plex/PluginSettings.cs
Normal file
18
Plex/PluginSettings.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user