12 lines
174 B
Python
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
|