tmpl-fastapi/app/sql/schemas.py

12 lines
153 B
Python
Raw Normal View History

2023-02-19 16:49:44 +03:00
from pydantic import BaseModel
class User(BaseModel):
id: int
email: str
name: str
age: int
class Config:
orm_mode = True