7 lines
96 B
Python
7 lines
96 B
Python
from enum import Enum
|
|
|
|
|
|
class JOB(Enum):
|
|
FISHERMAN = 1
|
|
FIREFIGHTER = 2
|
|
POLICEMAN = 3 |