19 lines
369 B
C#
19 lines
369 B
C#
namespace TelegramBotBase.Enums;
|
|
|
|
public enum ENavigationBarVisibility
|
|
{
|
|
/// <summary>
|
|
/// Shows it depending on the amount of items.
|
|
/// </summary>
|
|
auto = 0,
|
|
|
|
/// <summary>
|
|
/// Will not show it at any time.
|
|
/// </summary>
|
|
never = 1,
|
|
|
|
/// <summary>
|
|
/// Will show it at any time.
|
|
/// </summary>
|
|
always = 2
|
|
} |