namespace TelegramBotBase.Enums; public enum ENavigationBarVisibility { /// /// Shows it depending on the amount of items. /// auto = 0, /// /// Will not show it at any time. /// never = 1, /// /// Will show it at any time. /// always = 2 }