mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-29 10:40:30 -06:00
18 lines
378 B
C#
18 lines
378 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; }
|
|
}
|
|
}
|