fosKeyMan
Loading...
Searching...
No Matches
keystatus.py
Go to the documentation of this file.
1from enum import Enum
2
3
4class ActivationStatus(Enum):
5 r"""
6 Enumeration to represent the activation status of a keyfile.
7 - ACTIVATED: The keyfile is activated and exist on the disk.
8 - DEACTIVATED: The keyfile is deactivated and exist on the disk.
9 """
10 ACTIVATED = 1
11 DEACTIVATED = 2
Enumeration to represent the activation status of a keyfile.
Definition keystatus.py:4