7 lines
69 B
Python
7 lines
69 B
Python
from enum import Enum
|
|
|
|
|
|
class Color(Enum):
|
|
GREEN = 0
|
|
RED = 1
|