10 lines
187 B
Python
10 lines
187 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class PresentationAndPath(BaseModel):
|
|
presentation_id: str
|
|
path: str
|
|
|
|
|
|
class PresentationPathAndEditPath(PresentationAndPath):
|
|
edit_path: str
|