This commit is contained in:
FlorianDahn 2021-10-17 17:27:06 +02:00
parent a22ede0f4f
commit 755f5a245b
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ using TelegramBotBase.Interfaces;
namespace TelegramBotBase.Builder
{
public class BotBaseBuilder : IAPIKeySelectionStage, IStartFormSelectionPage, IBuildingStage, INetworkingSelectionStage
public class BotBaseBuilder : IAPIKeySelectionStage, IStartFormSelectionStage, IBuildingStage, INetworkingSelectionStage
{
String apiKey = null;
@ -24,7 +24,7 @@ namespace TelegramBotBase.Builder
return new BotBaseBuilder();
}
public IStartFormSelectionPage WithAPIKey(string apiKey)
public IStartFormSelectionStage WithAPIKey(string apiKey)
{
this.apiKey = apiKey;
return this;

View File

@ -6,7 +6,7 @@ using TelegramBotBase.Interfaces;
namespace TelegramBotBase.Builder.Interfaces
{
public interface IStartFormSelectionPage
public interface IStartFormSelectionStage
{
/// <summary>