15 lines
194 B
Python
15 lines
194 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class UserComments(BaseModel):
|
||
|
username: str
|
||
|
comment: str
|
||
|
|
||
|
|
||
|
class CommentsCreate(UserComments):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class CommentsRead(UserComments):
|
||
|
id: int
|