thesis-scripts/enums/type_enum.py
Vasileios Millios cc99abee31 Initial Commit
2026-06-14 19:38:09 +00:00

5 lines
No EOL
93 B
Python

from enum import Enum, auto
class TypeEnum(Enum):
MALICIOUS = auto()
BENIGN = auto()