7 lines
77 B
Python
7 lines
77 B
Python
from enum import Enum
|
|
|
|
|
|
class Resolution(Enum):
|
|
CITY = 1
|
|
COUNTRY = 2
|