17 lines
300 B
Python
17 lines
300 B
Python
|
|
from typing import List
|
||
|
|
|
||
|
|
from app.models.domain.comments import Comment
|
||
|
|
from app.models.schemas.rwschema import RWSchema
|
||
|
|
|
||
|
|
|
||
|
|
class ListOfCommentsInResponse(RWSchema):
|
||
|
|
comments: List[Comment]
|
||
|
|
|
||
|
|
|
||
|
|
class CommentInResponse(RWSchema):
|
||
|
|
comment: Comment
|
||
|
|
|
||
|
|
|
||
|
|
class CommentInCreate(RWSchema):
|
||
|
|
body: str
|