6 lines
89 B
Python
6 lines
89 B
Python
from enum import Enum
|
|
|
|
|
|
class Orientation(Enum):
|
|
HORIZONTAL = "H"
|
|
VERTICAL = "V"
|