This commit is contained in:
Ruben Fiszel
2024-01-16 23:46:36 +01:00
parent 640ebcb146
commit f782e009cd
1696 changed files with 160145 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from enum import Enum
class DeleteDraftKind(str, Enum):
APP = "app"
FLOW = "flow"
SCRIPT = "script"
def __str__(self) -> str:
return str(self.value)