2022-10-08 19:26:34 +03:00

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
}