sozsoft-platform/api/modules/Sozsoft.Sender/Telegram/TelegramSettingNames.cs

10 lines
408 B
C#
Raw Normal View History

2026-08-28 12:03:36 +00:00
namespace Sozsoft.Sender.Telegram;
public static class TelegramSettingNames
{
public const string Default = "App.Sender.Telegram.";
public const string Url = Default + "Url"; // https://api.telegram.org
public const string BotToken = Default + "BotToken"; // BotFather token: 123456:ABC-DEF...
public const string ParseMode = Default + "ParseMode"; // HTML | Markdown | MarkdownV2 | (bos)
}