From c1a0b12a94701d0e564615ffdb6ac512320783be Mon Sep 17 00:00:00 2001 From: FlorianDahn Date: Fri, 26 Nov 2021 17:47:42 +0100 Subject: [PATCH] Replace Configure with CustomCommands --- TelegramBotBase/Builder/Interfaces/IBotCommandsStage.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TelegramBotBase/Builder/Interfaces/IBotCommandsStage.cs b/TelegramBotBase/Builder/Interfaces/IBotCommandsStage.cs index d6b9dd4..9dcdadf 100644 --- a/TelegramBotBase/Builder/Interfaces/IBotCommandsStage.cs +++ b/TelegramBotBase/Builder/Interfaces/IBotCommandsStage.cs @@ -20,12 +20,13 @@ namespace TelegramBotBase.Builder.Interfaces /// ISessionSerializationStage DefaultCommands(); + /// /// Gives you the ability to add custom commands. /// /// /// - ISessionSerializationStage Configure(Action> action); + ISessionSerializationStage CustomCommands(Action> action); } }