Files
2026-07-13 13:08:41 +08:00

12 lines
205 B
Python

from pydantic import BaseModel
import uuid
class PresentationAndPath(BaseModel):
presentation_id: uuid.UUID
path: str
class PresentationPathAndEditPath(PresentationAndPath):
edit_path: str