Files
life-echo/api/app/features/content/schemas.py

12 lines
174 B
Python

"""Content feature schemas."""
from pydantic import BaseModel
class FAQResponse(BaseModel):
id: str
question: str
answer: str
category: str
order: int