Files
FileFlowsPlugins/Emby/PluginSettings.cs
2024-02-01 21:34:54 +13:00

21 lines
479 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, null)]
public List<KeyValuePair<string, string>> Mapping { get; set; }
}
}