10 lines
175 B
Python
10 lines
175 B
Python
from enum import Enum
|
|
|
|
class DeleteDraftKind(str, Enum):
|
|
APP = "app"
|
|
FLOW = "flow"
|
|
SCRIPT = "script"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|