Files
FileFlowsPlugins/Emby/PluginSettings.cs
John Andrews 419fc66af2 added mapping to emby and plex nodes
added ability to override server/token/mapping for emby/plex nodes
2022-04-22 14:10:57 +12:00

21 lines
473 B
C#

namespace FileFlows.Emby
{
using FileFlows.Plugin;
using FileFlows.Plugin.Attributes;
using System.ComponentModel.DataAnnotations;
public class PluginSettings:IPluginSettings
{
[Text(1)]
[Required]
public string ServerUrl { get; set; }
[Text(2)]
[Required]
public string AccessToken { get; set; }
[KeyValue(3)]
public List<KeyValuePair<string, string>> Mapping { get; set; }
}
}