mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
increased plugin versions to 0.6.1 fixed issue with replace original returning -11 instead of -1 fixed copy flie when on external node
26 lines
606 B
C#
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;
|
|
}
|