12 lines
210 B
Python
12 lines
210 B
Python
from enum import Enum
|
|
|
|
|
|
class EventStatusEnum(str, Enum):
|
|
ARCHIVED = "archived"
|
|
CLOSED = "closed"
|
|
DRAFT = "draft"
|
|
PUBLIC = "public"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|