diff --git a/back/schemas.py b/back/schemas.py index afce18a..0569960 100644 --- a/back/schemas.py +++ b/back/schemas.py @@ -50,5 +50,8 @@ class User(BaseModel): class UserInDB(User): hashed_password: str - +class Poem(BaseModel): + title: str + text: str + author: str