mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
11 lines
242 B
Python
11 lines
242 B
Python
|
|
from typing import Any, Literal
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Block(BaseModel):
|
|
block_id: str
|
|
activity_id: str
|
|
org_id: str
|
|
block_type: Literal["quizBlock", "videoBlock", "pdfBlock", "imageBlock"]
|
|
block_data: Any
|