11 lines
179 B
Python
11 lines
179 B
Python
from pydantic import BaseModel
|
|
|
|
class CommentsBase(BaseModel):
|
|
body: str
|
|
|
|
class Comments(CommentsBase):
|
|
id: int
|
|
post_id: int
|
|
|
|
class Config:
|
|
orm_mode = True |