9 lines
156 B
Python
9 lines
156 B
Python
from enum import Enum
|
|
|
|
class EnforcementCondition(str, Enum):
|
|
ALL = "All"
|
|
ANY = "Any"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|