namespace FileFlows.DiscordNodes;
///
/// THe Plugin settings
///
public class PluginSettings:IPluginSettings
{
///
/// Gets or sets the webhook id for this plugin
///
[Text(1)]
[Required]
public string WebhookId { get; set; } = string.Empty;
///
/// Gets or sets the webhook token for this plugin
///
[Text(2)]
[Required]
public string WebhookToken { get; set; } = string.Empty;
}