presenton/servers/fastapi/models/presentation_and_path.py

10 lines
187 B
Python

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