Files
FileFlowsPlugins/Pushover/PluginSettings.cs
2024-02-20 14:10:09 +13:00

22 lines
475 B
C#

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