Adding additional bot command checks toa void invalid configurations

This commit is contained in:
Florian Zevedei
2024-06-09 14:13:43 +02:00
parent e3d1652a02
commit 834038ff44
3 changed files with 19 additions and 2 deletions
+6
View File
@@ -21,4 +21,10 @@ public static class Telegram
/// The maximum length of callback data. Will raise an exception of it exceeds it.
/// </summary>
public const int MaxCallBackDataBytes = 64;
/// <summary>
/// The slash constant which indicates a bot command.
/// </summary>
public const string BotCommandIndicator = "/";
}