[FEATURE] add UsePersian method to BotBaseBuilder class

This commit is contained in:
AmirAbbas 2023-10-31 13:25:46 +03:30
parent 4825beea7e
commit e044d725c9

View File

@ -400,6 +400,12 @@ public class BotBaseBuilder : IAPIKeySelectionStage, IMessageLoopSelectionStage,
return this;
}
public IBuildingStage UsePersian()
{
Default.Language = new Persian();
return this;
}
public IBuildingStage Custom(Localization language)
{
Default.Language = language;