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