Files
FileFlowsPlugins/Apprise/PluginSettings.cs
John Andrews 36316832aa added 5.1 and 7.1 options to add audio track
increased plugin versions to 0.6.1
fixed issue with replace original returning -11 instead of -1
fixed copy flie when on external node
2022-05-15 11:32:18 +12:00

26 lines
606 B
C#

namespace FileFlows.Apprise;
using FileFlows.Plugin;
using FileFlows.Plugin.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The plugin settings for Apprise
/// </summary>
public class PluginSettings:IPluginSettings
{
/// <summary>
/// Gets or sets the URL of the Apprise server
/// </summary>
[Text(1)]
[Required]
public string ServerUrl { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the endpoint of the Apprise server
/// </summary>
[Text(2)]
[Required]
public string Endpoint { get; set; } = string.Empty;
}