Adding NavigationBarVisibility property to hide/show navigation buttons auto/never/always

This commit is contained in:
FlorianDahn
2020-09-15 16:38:36 +02:00
parent e9504f3b36
commit 31c8231b2d
2 changed files with 65 additions and 15 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
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
}
}