MessageLoop updates

- moving MessageLoop folders from Subfolder Factories one level up
- changing namespace and botbuilder methods to change
- adding FullMessageLoop which allows to get all updates (like MinimalMessageLoop but with all methods)
This commit is contained in:
FlorianDahn
2022-06-06 20:16:33 +02:00
parent 2a3d8c1b30
commit 78b3fbebc8
5 changed files with 141 additions and 5 deletions
+2 -2
View File
@@ -116,7 +116,7 @@ namespace TelegramBotBase.Builder
public IStartFormSelectionStage DefaultMessageLoop()
{
_messageloopfactory = new Factories.MessageLoops.FormBaseMessageLoop();
_messageloopfactory = new MessageLoops.FormBaseMessageLoop();
return this;
}
@@ -124,7 +124,7 @@ namespace TelegramBotBase.Builder
public IStartFormSelectionStage MinimalMessageLoop()
{
_messageloopfactory = new Factories.MessageLoops.MinimalMessageLoop();
_messageloopfactory = new MessageLoops.MinimalMessageLoop();
return this;
}