mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-20 07:29:29 -06:00
19 lines
396 B
C#
19 lines
396 B
C#
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; }
|
|
}
|
|
}
|