namespace FileFlows.Telegram;
///
/// The plugin settings for this plugin
///
public class PluginSettings : IPluginSettings
{
///
/// Gets or sets the bot token
///
[Text(1)]
[Required]
public string BotToken { get; set; }
///
/// Gets or sets the chat ID
///
[Text(1)]
[Required]
public string ChatId { get; set; }
}