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; }
///
/// Gets or sets the webhook token for this plugin
///
[Text(2)]
[Required]
public string WebhookToken { get; set; }
}