11 lines
189 B
Python
11 lines
189 B
Python
from enum import Enum
|
|
|
|
|
|
class PrivacyLevelEnum(str, Enum):
|
|
EVENT = "event"
|
|
PERSONAL = "personal"
|
|
PUBLIC = "public"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|