Add PageSelectionLocation

This commit is contained in:
Roman Inflianskas 2018-11-23 15:08:47 +03:00 committed by Roman Inflianskas
parent 8db8f70113
commit 691b66a513

View file

@ -0,0 +1,7 @@
from enum import Enum
class PageSelectionLocation(Enum):
TOP = 'top'
BOTTOM = 'bottom'
TOP_AND_BOTTOM = 'top_and_bottom'