8 lines
138 B
Python
8 lines
138 B
Python
from pydantic import BaseModel
|
|
|
|
class LikeResponse(BaseModel):
|
|
id: int
|
|
liker_id: int
|
|
liked_id: int
|
|
is_match: bool = False
|