11 lines
205 B
Python
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
|