12 lines
213 B
Python
12 lines
213 B
Python
![]() |
from enum import Enum
|
||
|
|
||
|
|
||
|
class SystemInfoIsolationEnum(str, Enum):
|
||
|
EMPTY = ''
|
||
|
DEFAULT = 'default'
|
||
|
HYPERV = 'hyperv'
|
||
|
PROCESS = 'process'
|
||
|
|
||
|
def __str__(self) -> str:
|
||
|
return str(self.value)
|