using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelegramBotBase.Enums
{
public enum eMonthPickerMode
{
///
/// Shows the calendar with day picker mode
///
day = 0,
///
/// Shows the calendar with month overview
///
month = 1,
///
/// Shows the calendar with year overview
///
year = 2
}
}