namespace FileFlows.Gotify;
///
/// The plugin settings for this plugin
///
public class PluginSettings : IPluginSettings
{
///
/// Gets or sets the URL to the server to send messages to
///
[Text(1)]
[Required]
public string ServerUrl { get; set; } = string.Empty;
///
/// Gets or sets the Access Token for the server
///
[Text(2)]
[Required]
public string AccessToken { get; set; } = string.Empty;
}