25 lines
542 B
C#
25 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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
|
|
}
|
|
}
|