mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 16:59:31 -06:00
22 lines
518 B
C#
22 lines
518 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; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Access Token for the server
|
|
/// </summary>
|
|
[Text(2)]
|
|
[Required]
|
|
public string AccessToken { get; set; } = string.Empty;
|
|
}
|