项目文件夹

文件
2026-07-13 13:08:41 +08:00

12 行
205 B
Python

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