TW-Requests/fastapi_app/schemas/comments.py

15 lines
194 B
Python
Raw Permalink Normal View History

2024-07-15 07:15:51 +00:00
from pydantic import BaseModel
class UserComments(BaseModel):
username: str
comment: str
class CommentsCreate(UserComments):
pass
class CommentsRead(UserComments):
id: int