presenton/servers/fastapi/models/presentation_and_path.py
2025-08-29 10:52:34 +05:45

11 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