Merge branch 'refactor/backend-architecture' into development
This commit is contained in:
11
api/app/features/content/schemas.py
Normal file
11
api/app/features/content/schemas.py
Normal file
@@ -0,0 +1,11 @@
|
||||
"""Content feature schemas."""
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class FAQResponse(BaseModel):
|
||||
id: str
|
||||
question: str
|
||||
answer: str
|
||||
category: str
|
||||
order: int
|
||||
Reference in New Issue
Block a user