7 lines
89 B
Python
7 lines
89 B
Python
|
from enum import Enum
|
||
|
|
||
|
class PasswordView(Enum):
|
||
|
RESTART_STATUS = 'Restart status'
|
||
|
|
||
|
|