Files
FileFlowsPlugins/Telegram/PluginSettings.cs
2024-04-24 17:57:38 +12:00

21 lines
466 B
C#

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