Files
FileFlowsPlugins/Gotify/PluginSettings.cs
2023-10-24 09:15:17 +13:00

22 lines
486 B
C#

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