diff --git a/app/schemas/api_schemas.py b/app/schemas/api_schemas.py index e8e33d0..0cccd80 100644 --- a/app/schemas/api_schemas.py +++ b/app/schemas/api_schemas.py @@ -25,4 +25,8 @@ class SelectChoice(BaseModel): user_id: NonNegativeInt card_id: NonNegativeInt - choice: typing.Literal["A", "B"] \ No newline at end of file + choice: typing.Literal["A", "B"] + +class ReactionCard(BaseModel): + user_id: NonNegativeInt + card_id: NonNegativeInt \ No newline at end of file