diff --git a/aiogram/types/page_selection_location.py b/aiogram/types/page_selection_location.py new file mode 100644 index 00000000..618ba466 --- /dev/null +++ b/aiogram/types/page_selection_location.py @@ -0,0 +1,7 @@ +from enum import Enum + + +class PageSelectionLocation(Enum): + TOP = 'top' + BOTTOM = 'bottom' + TOP_AND_BOTTOM = 'top_and_bottom'