mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 16:59:31 -06:00
21 lines
466 B
C#
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;
|
|
} |