presenton/electron/servers/fastapi/models/presentation_and_path.py
2026-02-20 12:02:23 +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