namespace FileFlows.Pushover;
///
/// The plugin settings for this plugin
///
public class PluginSettings : IPluginSettings
{
///
/// Gets or sets the user key to send the push over notification to
///
[Text(1)]
[Required]
public string UserKey { get; set; } = string.Empty;
///
/// Gets or sets the API Token
///
[Text(2)]
[Required]
public string ApiToken { get; set; } = string.Empty;
}