From 691b66a5139ba0225bbff2584594b2d5d61461c8 Mon Sep 17 00:00:00 2001 From: Roman Inflianskas Date: Fri, 23 Nov 2018 15:08:47 +0300 Subject: [PATCH] Add PageSelectionLocation --- aiogram/types/page_selection_location.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 aiogram/types/page_selection_location.py 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'