10 lines
135 B
Python
10 lines
135 B
Python
# standard import
|
|
from enum import IntEnum
|
|
|
|
|
|
class AccountStatus(IntEnum):
|
|
PENDING = 1
|
|
ACTIVE = 2
|
|
LOCKED = 3
|
|
RESET = 4
|