19 lines
376 B
C#
19 lines
376 B
C#
namespace TelegramBotBase.Enums;
|
|
|
|
public enum EMonthPickerMode
|
|
{
|
|
/// <summary>
|
|
/// Shows the calendar with day picker mode
|
|
/// </summary>
|
|
day = 0,
|
|
|
|
/// <summary>
|
|
/// Shows the calendar with month overview
|
|
/// </summary>
|
|
month = 1,
|
|
|
|
/// <summary>
|
|
/// Shows the calendar with year overview
|
|
/// </summary>
|
|
year = 2
|
|
} |