presenton/servers/fastapi/models/presentation_structure_model.py

6 lines
183 B
Python

from typing import List
from pydantic import BaseModel, Field
class PresentationStructureModel(BaseModel):
slides: List[int] = Field(description="List of slide layout indexes")