12 lines
235 B
C#
12 lines
235 B
C#
using TelegramBotBase.Enums;
|
|
|
|
namespace TelegramBotBase.Controls.Inline;
|
|
|
|
public class MonthPicker : CalendarPicker
|
|
{
|
|
public MonthPicker()
|
|
{
|
|
PickerMode = EMonthPickerMode.month;
|
|
EnableDayView = false;
|
|
}
|
|
} |