using System;
using System.Collections.Generic;
using System.Text;
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
}
}