mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 18:50:50 -06:00
22 lines
466 B
C#
22 lines
466 B
C#
namespace FileFlows.DiscordNodes;
|
|
|
|
/// <summary>
|
|
/// THe Plugin settings
|
|
/// </summary>
|
|
public class PluginSettings:IPluginSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the webhook id for this plugin
|
|
/// </summary>
|
|
[Text(1)]
|
|
[Required]
|
|
public string WebhookId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the webhook token for this plugin
|
|
/// </summary>
|
|
[Text(2)]
|
|
[Required]
|
|
public string WebhookToken { get; set; }
|
|
}
|